Merge branch 'release/3.38.1' into master

This commit is contained in:
Roman Mogylatov 2020-09-03 23:25:47 -04:00
commit d16e8817db
3 changed files with 7 additions and 3 deletions

View File

@ -189,8 +189,8 @@ framework:
Retrieving of the ``Service`` instance now is done like this ``container.service()``. Retrieving of the ``Service`` instance now is done like this ``container.service()``.
The responsibility of assembling the object is consolidated in the container. When you need to Objects assembling is consolidated in the container. When you need to make a change you do it in
make a change you do it in one place. one place.
When doing the testing you call the ``container.api_client.override()`` to replace the real API When doing the testing you call the ``container.api_client.override()`` to replace the real API
client with a mock: client with a mock:

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.38.1
------
- Fix README.
3.38.0 3.38.0
------ ------
- Update "What is What is dependency injection?" documentation page. - Update "What is What is dependency injection?" documentation page.

View File

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