Merge branch 'release/3.32.3' into master

This commit is contained in:
Roman Mogylatov 2020-08-26 16:35:51 -04:00
commit 47f4279ccd
4 changed files with 8 additions and 4 deletions

View File

@ -63,7 +63,7 @@ code becomes more flexible, clear and it is easier to test it.
How to implement dependency injection? 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. instead.
Before: Before:
@ -224,7 +224,7 @@ How does it different from the other frameworks?
``Dependency Injector`` makes a simple contract with you: ``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 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. The power of the ``Dependency Injector`` is in its simplicity and straightforwardness. It is a simple tool for the powerful concept.

View File

@ -76,7 +76,7 @@ How does it different from the other frameworks?
``Dependency Injector`` makes a simple contract with you: ``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 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. The power of the ``Dependency Injector`` is in its simplicity and straightforwardness. It is a simple tool for the powerful concept.

View File

@ -7,6 +7,10 @@ that were made in every particular version.
From version 0.7.6 *Dependency Injector* framework strictly From version 0.7.6 *Dependency Injector* framework strictly
follows `Semantic versioning`_ follows `Semantic versioning`_
3.32.3
------
- Fix few typos on README and docs main pages.
3.32.2 3.32.2
------ ------
- Make a fix in the factory delegation example (thanks to - Make a fix in the factory delegation example (thanks to

View File

@ -1,6 +1,6 @@
"""Dependency injector top-level package.""" """Dependency injector top-level package."""
__version__ = '3.32.2' __version__ = '3.32.3'
"""Version number that follows semantic versioning. """Version number that follows semantic versioning.
:type: str :type: str