Skip to content

Commit

Permalink
Merge branch 'release/4.32.3' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
rmk135 committed May 20, 2021
2 parents 64574df + e06dd78 commit 585c717
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
1 change: 1 addition & 0 deletions CONTRIBUTORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,4 @@ Dependency Injector Contributors
+ Fotis Koutoupas (kootoopas)
+ Shubhendra Singh Chauhan (withshubh)
+ sonthonaxrk (sonthonaxrk)
+ Ngo Thanh Loi (Leonn) (loingo95)
4 changes: 2 additions & 2 deletions docs/introduction/di_in_python.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Dependency injection and inversion of control in Python
Dependency Injector, its container, Factory, Singleton and Configuration
providers. The example show how to use Dependency Injector providers overriding
feature for testing or configuring project in different environments and explains
why it's better then monkey-patching.
why it's better than monkey-patching.

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

What is dependency injection?
-----------------------------
Expand Down
5 changes: 5 additions & 0 deletions docs/main/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ that were made in every particular version.
From version 0.7.6 *Dependency Injector* framework strictly
follows `Semantic versioning`_

4.32.3
------
- This fix a typo in ``di_in_python.rst`` doc.
Thanks to `@loingo95 <https://github.com/loingo95>`_ for the fix.

4.32.2
------
- Improve wiring fault tolerance.
Expand Down
2 changes: 1 addition & 1 deletion src/dependency_injector/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Top-level package."""

__version__ = '4.32.2'
__version__ = '4.32.3'
"""Version number.
:type: str
Expand Down

0 comments on commit 585c717

Please sign in to comment.