mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-21 17:16:46 +03:00
Merge branch 'release/3.32.2' into master
This commit is contained in:
commit
0c868fc0db
|
@ -7,6 +7,11 @@ that were made in every particular version.
|
|||
From version 0.7.6 *Dependency Injector* framework strictly
|
||||
follows `Semantic versioning`_
|
||||
|
||||
3.32.2
|
||||
------
|
||||
- Make a fix in the factory delegation example (thanks to
|
||||
`Joël Bourgault <https://github.com/ojob>`_ for finding and reporting the issue).
|
||||
|
||||
3.32.1
|
||||
------
|
||||
- Update DI Demo 2 example and READ to make typed configuration option injection.
|
||||
|
|
|
@ -26,7 +26,7 @@ class User:
|
|||
|
||||
# Defining User and Photo factories using DelegatedFactory provider:
|
||||
photos_factory = providers.DelegatedFactory(Photo)
|
||||
users_factory = providers.DelegatedFactory(
|
||||
users_factory = providers.Factory(
|
||||
User,
|
||||
photos_factory=photos_factory,
|
||||
)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
"""Dependency injector top-level package."""
|
||||
|
||||
__version__ = '3.32.1'
|
||||
__version__ = '3.32.2'
|
||||
"""Version number that follows semantic versioning.
|
||||
|
||||
:type: str
|
||||
|
|
Loading…
Reference in New Issue
Block a user