Skip to content

Commit e50e1f6

Browse files
committed
Bump version: 1.4.0 → 1.4.1
1 parent f9fd57b commit e50e1f6

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.4.0
2+
current_version = 1.4.1
33
commit = True
44
tag = True
55

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
year = '2014-2016'
2727
author = 'Ionel Cristian Mărieș'
2828
copyright = '{0}, {1}'.format(year, author)
29-
version = release = '1.4.0'
29+
version = release = '1.4.1'
3030

3131
pygments_style = 'trac'
3232
templates_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.4.0',
26+
version='1.4.1',
2727
license='BSD',
2828
description='``aspectlib`` is an aspect-oriented programming, monkey-patch and decorators library. It is useful when changing',
2929
long_description='%s\n%s' % (

src/aspectlib/__init__.py

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

4242

4343
__all__ = 'weave', 'Aspect', 'Proceed', 'Return', 'ALL_METHODS', 'NORMAL_METHODS', 'ABSOLUTELY_ALL_METHODS'
44-
__version__ = '1.4.0'
44+
__version__ = '1.4.1'
4545

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

0 commit comments

Comments
 (0)