Increase version to 3.3.6

This commit is contained in:
Roman Mogilatov 2017-03-29 00:22:54 +03:00
parent 0373756eba
commit a59530d228
2 changed files with 9 additions and 1 deletions

View File

@ -11,6 +11,14 @@ Development version
------------------- -------------------
- No features. - No features.
3.3.6
-----
- Patch ``Configuration`` provider to raise ``AttributeError`` when there
is an attempt to access special attribute like ``__module__`` or
``__name__`` (this behaviour is identical to behaviour of ``object``).
- Apply minor refactoring for ``providers`` module.
- Remove cythonization from travis building process.
3.3.5 3.3.5
----- -----
- [Refactoring] Consolidate all containers in - [Refactoring] Consolidate all containers in

View File

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