From bcbdc7d6ad3afcb9bbcf264ad8a31290c9c733e8 Mon Sep 17 00:00:00 2001 From: Dmitry Date: Fri, 7 Jun 2019 15:55:30 +0200 Subject: [PATCH 1/2] Fix typo (#221) * Fix typo. (#214) * Fix typo * Update the title tildas --- 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 7fe4f95a..2b080c3e 100644 --- a/docs/introduction/di_in_python.rst +++ b/docs/introduction/di_in_python.rst @@ -130,8 +130,8 @@ using :doc:`Dependency Injector <../index>`: :language: python :linenos: -Userful links -~~~~~~~~~~~~~ +Useful links +~~~~~~~~~~~~ There are some useful links related to dependency injection design pattern that could be used for further reading: From ecae4c22963e9460b1c0130f7a8ab15bd657ba80 Mon Sep 17 00:00:00 2001 From: Roman Mogylatov Date: Fri, 7 Jun 2019 10:03:11 -0400 Subject: [PATCH 2/2] Bump version to 3.14.7 --- 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 b2ae50c1..1551cf76 100644 --- a/CONTRIBUTORS.rst +++ b/CONTRIBUTORS.rst @@ -8,3 +8,4 @@ Dependency Injector Contributors + James Lafa (jameslafa) + Vlad Ghita (vlad-ghita) + Jeroen Rietveld (jeroenrietveld) ++ Dmitry Kuzmin (xotonic) diff --git a/docs/main/changelog.rst b/docs/main/changelog.rst index ba118a96..9bb675af 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`_ +3.14.7 +------ +- Fix typo on "Dependency injection and inversion of control in Python" docs page (thanks to + `Dmitry (xotonic) `_). + 3.14.6 ------ - Fix ``FactoryAggregate`` provider copying issue. diff --git a/src/dependency_injector/__init__.py b/src/dependency_injector/__init__.py index f2632b6d..212636b8 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.6' +__version__ = '3.14.7' """Version number that follows semantic versioning. :type: str