Increase version to 3.3.0

This commit is contained in:
Roman Mogilatov 2017-01-30 00:12:08 +02:00
parent dafd416b95
commit 79d1d76817
3 changed files with 6 additions and 1 deletions

View File

@ -11,6 +11,10 @@ Development version
------------------- -------------------
- No features. - No features.
3.3.0
-----
- Add support of Python 3.6.
3.2.5 3.2.5
----- -----
- Add description of structure into README. - Add description of structure into README.

View File

@ -101,6 +101,7 @@ setup(name='dependency-injector',
'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy', 'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development', 'Topic :: Software Development',

View File

@ -1,6 +1,6 @@
"""Dependency injector top-level package.""" """Dependency injector top-level package."""
__version__ = '3.2.5' __version__ = '3.3.0'
"""Version number that follows semantic versioning. """Version number that follows semantic versioning.
:type: str :type: str