From 15acccf48fe57c9008647efa0c8c9ac3355ed50f Mon Sep 17 00:00:00 2001 From: Roman Mogylatov Date: Wed, 26 Aug 2020 16:35:31 -0400 Subject: [PATCH] Bump version to 3.32.3 --- README.rst | 4 ++-- docs/index.rst | 2 +- docs/main/changelog.rst | 4 ++++ src/dependency_injector/__init__.py | 2 +- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index eafb0e42..9604c0ee 100644 --- a/README.rst +++ b/README.rst @@ -63,7 +63,7 @@ code becomes more flexible, clear and it is easier to test it. How to implement dependency injection? -------------------------------------- -Objects do not create each other anymore. They provide a way to inject the needed dependency +Objects do not create each other anymore. They provide a way to inject the needed dependencies instead. Before: @@ -224,7 +224,7 @@ How does it different from the other frameworks? ``Dependency Injector`` makes a simple contract with you: -- You tell the framework how to build you code +- You tell the framework how to assemble your objects - The framework does it for you The power of the ``Dependency Injector`` is in its simplicity and straightforwardness. It is a simple tool for the powerful concept. diff --git a/docs/index.rst b/docs/index.rst index a4f77569..168ef255 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -76,7 +76,7 @@ How does it different from the other frameworks? ``Dependency Injector`` makes a simple contract with you: -- You tell the framework how to build you code +- You tell the framework how to assemble your objects - The framework does it for you The power of the ``Dependency Injector`` is in its simplicity and straightforwardness. It is a simple tool for the powerful concept. diff --git a/docs/main/changelog.rst b/docs/main/changelog.rst index 7d6c7f9b..c7bb5358 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.32.3 +------ +- Fix few typos on README and docs main pages. + 3.32.2 ------ - Make a fix in the factory delegation example (thanks to diff --git a/src/dependency_injector/__init__.py b/src/dependency_injector/__init__.py index b08f32e1..d08495b0 100644 --- a/src/dependency_injector/__init__.py +++ b/src/dependency_injector/__init__.py @@ -1,6 +1,6 @@ """Dependency injector top-level package.""" -__version__ = '3.32.2' +__version__ = '3.32.3' """Version number that follows semantic versioning. :type: str