Skip to content

Commit d5122f8

Browse files
committed
Bump version: 1.5.2 → 2.0.0
1 parent 01c8d9c commit d5122f8

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.5.2
2+
current_version = 2.0.0
33
commit = True
44
tag = True
55

README.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ Overview
5151
:alt: Supported implementations
5252
:target: https://pypi.org/project/aspectlib
5353

54-
.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-aspectlib/v1.5.2.svg
54+
.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-aspectlib/v2.0.0.svg
5555
:alt: Commits since latest release
56-
:target: https://github.com/ionelmc/python-aspectlib/compare/v1.5.2...main
56+
:target: https://github.com/ionelmc/python-aspectlib/compare/v2.0.0...main
5757

5858

5959

docs/conf.py

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

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

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def read(*names, **kwargs):
2020

2121
setup(
2222
name='aspectlib',
23-
version='1.5.2',
23+
version='2.0.0',
2424
license='BSD-2-Clause',
2525
description='``aspectlib`` is an aspect-oriented programming, monkey-patch and decorators library. It is useful when changing',
2626
long_description='{}\n{}'.format(

src/aspectlib/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def isasyncfunction(obj):
5151
isasyncfunction = None
5252

5353
__all__ = 'weave', 'Aspect', 'Proceed', 'Return', 'ALL_METHODS', 'NORMAL_METHODS', 'ABSOLUTELY_ALL_METHODS'
54-
__version__ = '1.5.2'
54+
__version__ = '2.0.0'
5555

5656
logger = getLogger(__name__)
5757
logdebug = logf(logger.debug)

0 commit comments

Comments
 (0)