Bump version to 3.23.0

This commit is contained in:
Roman Mogylatov 2020-07-20 17:02:32 -04:00
parent 1674cecc8d
commit 93adbe5207
3 changed files with 14 additions and 1 deletions

View File

@ -7,6 +7,11 @@ that were made in every particular version.
From version 0.7.6 *Dependency Injector* framework strictly From version 0.7.6 *Dependency Injector* framework strictly
follows `Semantic versioning`_ follows `Semantic versioning`_
3.23.0
------
- Add ``Flask`` tutorial.
- Add PyPI classifiers.
3.22.0 3.22.0
------ ------
- Migrate docs to ``alabaster`` theme. - Migrate docs to ``alabaster`` theme.

View File

@ -97,6 +97,14 @@ setup(name='dependency-injector',
'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy', 'Programming Language :: Python :: Implementation :: PyPy',
'Framework :: AsyncIO',
'Framework :: Bottle',
'Framework :: Django',
'Framework :: Flask',
'Framework :: Pylons',
'Framework :: Pyramid',
'Framework :: Pytest',
'Framework :: TurboGears',
'Topic :: Software Development', 'Topic :: Software Development',
'Topic :: Software Development :: Libraries', 'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Software Development :: Libraries :: Python Modules',

View File

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