Skip to content

Commit a46866e

Browse files
committed
Bump version: 1.3.1 → 1.3.2
1 parent e2da9ac commit a46866e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
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.3.1
2+
current_version = 1.3.2
33
commit = True
44
tag = True
55

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
year = '2014-2015'
2525
author = 'Ionel Cristian Mărieș'
2626
copyright = '{0}, {1}'.format(year, author)
27-
version = release = '1.3.1'
27+
version = release = '1.3.2'
2828
import sphinx_py3doc_enhanced_theme
2929
html_theme = "sphinx_py3doc_enhanced_theme"
3030
html_theme_path = [sphinx_py3doc_enhanced_theme.get_html_theme_path()]

setup.py

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

2424
setup(
2525
name='aspectlib',
26-
version='1.3.1',
26+
version='1.3.2',
2727
license='BSD',
2828
description="aspectlib is an aspect-oriented programming, monkey-patch and decorators library. It is useful when "
2929
"changing behavior in existing code is desired. It includes tools for debugging and testing: simple "

src/aspectlib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040

4141

4242
__all__ = 'weave', 'Aspect', 'Proceed', 'Return', 'ALL_METHODS', 'NORMAL_METHODS'
43-
__version__ = '1.3.1'
43+
__version__ = '1.3.2'
4444

4545
logger = getLogger(__name__)
4646
logdebug = logf(logger.debug)

0 commit comments

Comments
 (0)