Skip to content

Commit 0c868fc

Browse files
committed
Merge branch 'release/3.32.2' into master
2 parents 2b30e17 + cc7ade8 commit 0c868fc

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

docs/main/changelog.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ that were made in every particular version.
77
From version 0.7.6 *Dependency Injector* framework strictly
88
follows `Semantic versioning`_
99

10+
3.32.2
11+
------
12+
- Make a fix in the factory delegation example (thanks to
13+
`Joël Bourgault <https://github.com/ojob>`_ for finding and reporting the issue).
14+
1015
3.32.1
1116
------
1217
- Update DI Demo 2 example and READ to make typed configuration option injection.

examples/providers/factory_delegation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def main_photo(self):
2626

2727
# Defining User and Photo factories using DelegatedFactory provider:
2828
photos_factory = providers.DelegatedFactory(Photo)
29-
users_factory = providers.DelegatedFactory(
29+
users_factory = providers.Factory(
3030
User,
3131
photos_factory=photos_factory,
3232
)

src/dependency_injector/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Dependency injector top-level package."""
22

3-
__version__ = '3.32.1'
3+
__version__ = '3.32.2'
44
"""Version number that follows semantic versioning.
55
66
:type: str

0 commit comments

Comments
 (0)