Release 3.1.3

This commit is contained in:
Roman Mogilatov 2016-11-15 14:32:23 +02:00
parent 18eb733904
commit b0d507b8bf
3 changed files with 6 additions and 1 deletions

View File

@ -11,6 +11,10 @@ Development version
------------------- -------------------
- No features. - No features.
3.1.3
-----
- Fix flake8 ``E305`` error in examples.
3.1.2 3.1.2
----- -----
- Remove ``public`` (``extern``) modifier utils constants. - Remove ``public`` (``extern``) modifier utils constants.

View File

@ -10,6 +10,7 @@ def example(example_object, queue):
"""Example function that puts provided object in the provided queue.""" """Example function that puts provided object in the provided queue."""
queue.put(example_object) queue.put(example_object)
# Create thread-local singleton provider for some object (main thread): # Create thread-local singleton provider for some object (main thread):
thread_local_object = providers.ThreadLocalSingleton(object) thread_local_object = providers.ThreadLocalSingleton(object)

View File

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