Increase version to 3.0.1

This commit is contained in:
Roman Mogilatov 2016-11-11 18:36:35 +02:00
parent acdf7f8052
commit 98ee1882cd
3 changed files with 10 additions and 4 deletions

View File

@ -9,7 +9,13 @@ follows `Semantic versioning`_
Development version Development version
------------------- -------------------
.. - No features. - No features.
3.0.1
-----
- Add ``*.c`` source files under version control.
- Change keywords.
3.0.0 3.0.0
----- -----

View File

@ -79,10 +79,10 @@ setup(name='dependency-injector',
license='BSD New', license='BSD New',
platforms=['any'], platforms=['any'],
keywords=[ keywords=[
'DI',
'Dependency injection', 'Dependency injection',
'IoC', 'DI',
'Inversion of Control', 'Inversion of Control',
'IoC',
], ],
classifiers=[ classifiers=[
'Development Status :: 5 - Production/Stable', 'Development Status :: 5 - Production/Stable',

View File

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