Update version to 3.4.3

This commit is contained in:
Roman Mogilatov 2017-04-19 00:00:29 +03:00
parent 9c589df6ab
commit 0766df39d7
4 changed files with 7 additions and 3 deletions

View File

@ -11,6 +11,10 @@ Development version
------------------- -------------------
- No features. - No features.
3.4.3
-----
- Update doc block for ``Provider.overriding_lock`` attribute.
3.4.2 3.4.2
----- -----
- Make ``Provider`` overriding methods thread safe: - Make ``Provider`` overriding methods thread safe:

View File

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

View File

@ -25935,7 +25935,7 @@ PyMODINIT_FUNC PyInit_providers(void)
* __IS_PROVIDER__ = True * __IS_PROVIDER__ = True
* *
* overriding_lock = threading.RLock() # <<<<<<<<<<<<<< * overriding_lock = threading.RLock() # <<<<<<<<<<<<<<
* """Storage reentrant lock. * """Overriding reentrant lock.
* *
*/ */
__pyx_t_5 = __Pyx_GetModuleGlobalName(__pyx_n_s_threading); if (unlikely(!__pyx_t_5)) __PYX_ERR(1, 77, __pyx_L1_error) __pyx_t_5 = __Pyx_GetModuleGlobalName(__pyx_n_s_threading); if (unlikely(!__pyx_t_5)) __PYX_ERR(1, 77, __pyx_L1_error)

View File

@ -75,7 +75,7 @@ cdef class Provider(object):
__IS_PROVIDER__ = True __IS_PROVIDER__ = True
overriding_lock = threading.RLock() overriding_lock = threading.RLock()
"""Storage reentrant lock. """Overriding reentrant lock.
:type: :py:class:`threading.RLock` :type: :py:class:`threading.RLock`
""" """