Release 3.1.3
This commit is contained in:
parent
18eb733904
commit
b0d507b8bf
|
@ -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.
|
||||||
|
|
|
@ -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)
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue