File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,11 @@ that were made in every particular version.
7
7
From version 0.7.6 *Dependency Injector * framework strictly
8
8
follows `Semantic versioning `_
9
9
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
+
10
15
3.32.1
11
16
------
12
17
- Update DI Demo 2 example and READ to make typed configuration option injection.
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ def main_photo(self):
26
26
27
27
# Defining User and Photo factories using DelegatedFactory provider:
28
28
photos_factory = providers .DelegatedFactory (Photo )
29
- users_factory = providers .DelegatedFactory (
29
+ users_factory = providers .Factory (
30
30
User ,
31
31
photos_factory = photos_factory ,
32
32
)
Original file line number Diff line number Diff line change 1
1
"""Dependency injector top-level package."""
2
2
3
- __version__ = '3.32.1 '
3
+ __version__ = '3.32.2 '
4
4
"""Version number that follows semantic versioning.
5
5
6
6
:type: str
You can’t perform that action at this time.
0 commit comments