Skip to content

Commit

Permalink
Bump version: 1.2.2 → 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ionelmc committed Jun 6, 2015
1 parent eef2007 commit 443e5a8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.2.2
current_version = 1.3.0
files = setup.py docs/conf.py src/aspectlib/__init__.py
commit = True
tag = False
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
year = u'2015'
author = u'Ionel Cristian Maries'
copyright = '{0}, {1}'.format(year, author)
version = release = u'1.2.2'
version = release = u'1.3.0'

import sphinx_py3doc_enhanced_theme
html_theme = "sphinx_py3doc_enhanced_theme"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def read(*names, **kwargs):

setup(
name='aspectlib',
version='1.2.2',
version='1.3.0',
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
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@


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

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

0 comments on commit 443e5a8

Please sign in to comment.