Skip to content

Commit 30d7dc7

Browse files
committed
bump version to 1.2.0
1 parent 4e650e9 commit 30d7dc7

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

dependency_injection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
from collections import namedtuple
5252

5353

54-
__version__ = '1.1.0-dev'
54+
__version__ = '1.2.0'
5555

5656
CLASSY_TYPES = (type(object),)
5757
if sys.version_info < (3,):

docs/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,10 @@
4747
# |version| and |release|, also used in various other places throughout the
4848
# built documents.
4949
#
50-
# The short X.Y version.
51-
version = '1.0'
5250
# The full version, including alpha/beta/rc tags.
53-
release = '1.1.0-dev'
51+
release = '1.2.0'
52+
# The short X.Y version.
53+
version = release.split('-', 1)[0]
5454

5555
# The language for content autogenerated by Sphinx. Refer to documentation
5656
# for a list of supported languages.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
author_email='[email protected]',
77
description='This library defines a helper for building a dependency injection framework.',
88
url='https://dependency-injection-py.readthedocs.org/',
9-
version='1.1.0-dev',
9+
version='1.2.0',
1010
py_modules=['dependency_injection'],
1111
classifiers=[
1212
'Development Status :: 5 - Production/Stable',

0 commit comments

Comments
 (0)