From 9ef616a148b48d0cdfe71922cabe908fa97a3e8f Mon Sep 17 00:00:00 2001 From: Vlad Ghita Date: Fri, 4 Jan 2019 15:11:55 +0200 Subject: [PATCH 1/3] Fix typo. (#214) --- docs/providers/dependency.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/providers/dependency.rst b/docs/providers/dependency.rst index 0da99e9d..6fdbb912 100644 --- a/docs/providers/dependency.rst +++ b/docs/providers/dependency.rst @@ -17,7 +17,7 @@ applications. It may be good idea, to move all external dependencies (like *database connection*) to the top level and make them to be injected on your software component's initialization. It will make third party developers feel -themselves free about integration of yours component in their applications, +themselves free about integration of your component in their applications, because they would be able to find right place / right way for doing this in their application's architectures. From 673796b4b725a6c157db0e71eeabe58e2ad3ccd2 Mon Sep 17 00:00:00 2001 From: Roman Mogylatov Date: Sat, 5 Jan 2019 21:37:50 -0500 Subject: [PATCH 2/3] Add Vlad Ghita to the list of contributors --- CONTRIBUTORS.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.rst b/CONTRIBUTORS.rst index 5dab5c90..91a52dd0 100644 --- a/CONTRIBUTORS.rst +++ b/CONTRIBUTORS.rst @@ -6,3 +6,4 @@ Dependency Injector Contributors + Terrence Brannon (metaperl) + Stanislav Lobanov (asyncee) + James Lafa (jameslafa) ++ Vlad Ghita (vlad-ghita) From 69602dc3de361d7c6521fa4c8c3ee18cd7505aa4 Mon Sep 17 00:00:00 2001 From: Roman Mogylatov Date: Sat, 5 Jan 2019 21:38:07 -0500 Subject: [PATCH 3/3] Bump version to 3.14.4 --- docs/main/changelog.rst | 4 ++++ src/dependency_injector/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/main/changelog.rst b/docs/main/changelog.rst index e87f6420..837761ce 100644 --- a/docs/main/changelog.rst +++ b/docs/main/changelog.rst @@ -7,6 +7,10 @@ that were made in every particular version. From version 0.7.6 *Dependency Injector* framework strictly follows `Semantic versioning`_ +3.14.4 +------ +- Fix typo in providers doc (thanks to `Vlad Ghita `_). + 3.14.3 ------ - Fix issue with copying providers that have system streams injections diff --git a/src/dependency_injector/__init__.py b/src/dependency_injector/__init__.py index 5d07ea03..34fbba3e 100644 --- a/src/dependency_injector/__init__.py +++ b/src/dependency_injector/__init__.py @@ -1,6 +1,6 @@ """Dependency injector top-level package.""" -__version__ = '3.14.3' +__version__ = '3.14.4' """Version number that follows semantic versioning. :type: str