Merge branch 'release/3.32.2' into master

This commit is contained in:
Roman Mogylatov 2020-08-26 16:25:20 -04:00
commit 0c868fc0db
3 changed files with 7 additions and 2 deletions

View File

@ -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.

View File

@ -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,
)

View File

@ -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