From c2a1351612d52c1dbb4594f85783b8ffa9fad4bc Mon Sep 17 00:00:00 2001 From: "Ngo Thanh Loi (Leonn)" Date: Fri, 21 May 2021 04:58:15 +0700 Subject: [PATCH 1/2] Fix typo (#456) --- docs/introduction/di_in_python.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/introduction/di_in_python.rst b/docs/introduction/di_in_python.rst index 09dc4109..80ede500 100644 --- a/docs/introduction/di_in_python.rst +++ b/docs/introduction/di_in_python.rst @@ -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. @@ -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? ----------------------------- From e06dd782cd91d5bfb8eaa092aefe420f7fd7956b Mon Sep 17 00:00:00 2001 From: Roman Mogylatov Date: Thu, 20 May 2021 18:12:00 -0400 Subject: [PATCH 2/2] Bump version to 4.32.3 --- CONTRIBUTORS.rst | 1 + docs/main/changelog.rst | 5 +++++ src/dependency_injector/__init__.py | 2 +- 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTORS.rst b/CONTRIBUTORS.rst index 14b5add8..fd93aa29 100644 --- a/CONTRIBUTORS.rst +++ b/CONTRIBUTORS.rst @@ -17,3 +17,4 @@ Dependency Injector Contributors + Fotis Koutoupas (kootoopas) + Shubhendra Singh Chauhan (withshubh) + sonthonaxrk (sonthonaxrk) ++ Ngo Thanh Loi (Leonn) (loingo95) diff --git a/docs/main/changelog.rst b/docs/main/changelog.rst index af592f21..fe86d7c3 100644 --- a/docs/main/changelog.rst +++ b/docs/main/changelog.rst @@ -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 `_ for the fix. + 4.32.2 ------ - Improve wiring fault tolerance. diff --git a/src/dependency_injector/__init__.py b/src/dependency_injector/__init__.py index 35a30129..eb24284d 100644 --- a/src/dependency_injector/__init__.py +++ b/src/dependency_injector/__init__.py @@ -1,6 +1,6 @@ """Top-level package.""" -__version__ = '4.32.2' +__version__ = '4.32.3' """Version number. :type: str