Skip to content

Commit 2f57542

Browse files
committed
Bump version: 1.2.1 → 1.2.2
1 parent 81d2953 commit 2f57542

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

.bumpversion.cfg

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
[bumpversion]
2-
current_version = 1.2.1
2+
current_version = 1.2.2
33
commit = True
44
tag = True
55

66
[bumpversion:file:setup.py]
7+
78
[bumpversion:file:docs/conf.py]
9+
810
[bumpversion:file:src/lazy_object_proxy/__init__.py]
11+

docs/conf.py

+1-1
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.2.1'
29+
version = release = '1.2.2'
3030

3131
pygments_style = 'trac'
3232
templates_path = ['.']

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def _unavailable(self, e):
5858

5959
setup(
6060
name='lazy-object-proxy',
61-
version='1.2.1',
61+
version='1.2.2',
6262
license='BSD',
6363
description='A fast and thorough lazy object proxy.',
6464
long_description='%s\n%s' % (

src/lazy_object_proxy/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
else:
1616
copyreg.constructor(identity)
1717

18-
__version__ = "1.2.1"
18+
__version__ = "1.2.2"
1919

2020
__all__ = "Proxy",

0 commit comments

Comments
 (0)