Skip to content

Commit 585c717

Browse files
committed
Merge branch 'release/4.32.3' into master
2 parents 64574df + e06dd78 commit 585c717

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

CONTRIBUTORS.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,4 @@ Dependency Injector Contributors
1717
+ Fotis Koutoupas (kootoopas)
1818
+ Shubhendra Singh Chauhan (withshubh)
1919
+ sonthonaxrk (sonthonaxrk)
20+
+ Ngo Thanh Loi (Leonn) (loingo95)

docs/introduction/di_in_python.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Dependency injection and inversion of control in Python
99
Dependency Injector, its container, Factory, Singleton and Configuration
1010
providers. The example show how to use Dependency Injector providers overriding
1111
feature for testing or configuring project in different environments and explains
12-
why it's better then monkey-patching.
12+
why it's better than monkey-patching.
1313

1414
Originally dependency injection pattern got popular in the languages with a static typing,
1515
like Java. Dependency injection is a principle that helps to achieve an inversion of control.
@@ -29,7 +29,7 @@ contains Python examples that show how to implement dependency injection. It dem
2929
of the dependency injection framework ``Dependency Injector``, its container, ``Factory``,
3030
``Singleton`` and ``Configuration`` providers. The example shows how to use ``Dependency Injector``
3131
providers overriding feature for testing or configuring project in different environments and
32-
explains why it's better then monkey-patching.
32+
explains why it's better than monkey-patching.
3333

3434
What is dependency injection?
3535
-----------------------------

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+
4.32.3
11+
------
12+
- This fix a typo in ``di_in_python.rst`` doc.
13+
Thanks to `@loingo95 <https://github.com/loingo95>`_ for the fix.
14+
1015
4.32.2
1116
------
1217
- Improve wiring fault tolerance.

src/dependency_injector/__init__.py

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

3-
__version__ = '4.32.2'
3+
__version__ = '4.32.3'
44
"""Version number.
55
66
:type: str

0 commit comments

Comments
 (0)