Skip to content

Commit 483fd5c

Browse files
committed
Bump version: 1.5.1 → 1.5.2
1 parent 889055f commit 483fd5c

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.5.1
2+
current_version = 1.5.2
33
commit = True
44
tag = True
55

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ Overview
5555
:alt: Supported implementations
5656
:target: https://pypi.org/project/aspectlib
5757

58-
.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-aspectlib/v1.5.1.svg
58+
.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-aspectlib/v1.5.2.svg
5959
:alt: Commits since latest release
60-
:target: https://github.com/ionelmc/python-aspectlib/compare/v1.5.1...master
60+
:target: https://github.com/ionelmc/python-aspectlib/compare/v1.5.2...master
6161

6262

6363

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
year = '2014-2020'
2121
author = 'Ionel Cristian Mărieș'
2222
copyright = '{0}, {1}'.format(year, author)
23-
version = release = '1.5.1'
23+
version = release = '1.5.2'
2424

2525
pygments_style = 'trac'
2626
templates_path = ['.']

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def read(*names, **kwargs):
2525

2626
setup(
2727
name='aspectlib',
28-
version='1.5.1',
28+
version='1.5.2',
2929
license='BSD-2-Clause',
3030
description='``aspectlib`` is an aspect-oriented programming, monkey-patch and decorators library. It is useful when changing',
3131
long_description='%s\n%s' % (

src/aspectlib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def isasyncfunction(obj):
5757
isasyncfunction = None
5858

5959
__all__ = 'weave', 'Aspect', 'Proceed', 'Return', 'ALL_METHODS', 'NORMAL_METHODS', 'ABSOLUTELY_ALL_METHODS'
60-
__version__ = '1.5.1'
60+
__version__ = '1.5.2'
6161

6262
logger = getLogger(__name__)
6363
logdebug = logf(logger.debug)

0 commit comments

Comments
 (0)