Skip to content

Commit

Permalink
Bump version: 1.3.0 → 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ionelmc committed Sep 12, 2015
1 parent 4b6575e commit eec26a2
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .bumpversion.cfg
@@ -1,8 +1,11 @@
[bumpversion]
current_version = 1.3.0
current_version = 1.3.1
commit = True
tag = True

[bumpversion:file:setup.py]

[bumpversion:file:docs/conf.py]

[bumpversion:file:src/aspectlib/__init__.py]

2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -24,7 +24,7 @@
year = '2014-2015'
author = 'Ionel Cristian Mărieș'
copyright = '{0}, {1}'.format(year, author)
version = release = '1.3.0'
version = release = '1.3.1'
import sphinx_py3doc_enhanced_theme
html_theme = "sphinx_py3doc_enhanced_theme"
html_theme_path = [sphinx_py3doc_enhanced_theme.get_html_theme_path()]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -23,7 +23,7 @@ def read(*names, **kwargs):

setup(
name='aspectlib',
version='1.3.0',
version='1.3.1',
license='BSD',
description="aspectlib is an aspect-oriented programming, monkey-patch and decorators library. It is useful when "
"changing behavior in existing code is desired. It includes tools for debugging and testing: simple "
Expand Down
2 changes: 1 addition & 1 deletion src/aspectlib/__init__.py
Expand Up @@ -40,7 +40,7 @@


__all__ = 'weave', 'Aspect', 'Proceed', 'Return', 'ALL_METHODS', 'NORMAL_METHODS'
__version__ = '1.3.0'
__version__ = '1.3.1'

logger = getLogger(__name__)
logdebug = logf(logger.debug)
Expand Down

0 comments on commit eec26a2

Please sign in to comment.