diff --git a/README.rst b/README.rst index 11216087..e4e7b3e2 100644 --- a/README.rst +++ b/README.rst @@ -189,8 +189,8 @@ framework: 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 -make a change you do it in one place. +Objects assembling is consolidated in the container. When you need to make a change you do it in +one place. When doing the testing you call the ``container.api_client.override()`` to replace the real API client with a mock: diff --git a/docs/main/changelog.rst b/docs/main/changelog.rst index 552908b7..3c32e5d2 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.38.1 +------ +- Fix README. + 3.38.0 ------ - Update "What is What is dependency injection?" documentation page. diff --git a/src/dependency_injector/__init__.py b/src/dependency_injector/__init__.py index 2eeec765..f9b7bd7c 100644 --- a/src/dependency_injector/__init__.py +++ b/src/dependency_injector/__init__.py @@ -1,6 +1,6 @@ """Dependency injector top-level package.""" -__version__ = '3.38.0' +__version__ = '3.38.1' """Version number that follows semantic versioning. :type: str