From 69043d9c4ee38d98cfa74a124fccd4acfc0b8a10 Mon Sep 17 00:00:00 2001 From: Roman Mogilatov Date: Wed, 27 Apr 2016 02:04:18 +0300 Subject: [PATCH] Release 1.16.8 --- dependency_injector/__init__.py | 2 +- docs/introduction/di_in_python.rst | 4 ++-- docs/main/changelog.rst | 4 ++++ 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/dependency_injector/__init__.py b/dependency_injector/__init__.py index 06de3b3b..ee013eb6 100644 --- a/dependency_injector/__init__.py +++ b/dependency_injector/__init__.py @@ -61,7 +61,7 @@ from dependency_injector.errors import ( from dependency_injector import catalogs catalog = catalogs -VERSION = '1.16.7' +VERSION = '1.16.8' """Version number that follows semantic versioning. :type: str diff --git a/docs/introduction/di_in_python.rst b/docs/introduction/di_in_python.rst index 9abebe1a..378c9ccf 100644 --- a/docs/introduction/di_in_python.rst +++ b/docs/introduction/di_in_python.rst @@ -98,8 +98,8 @@ Let's go through next example: :linenos: ``Car`` **creates** an ``Engine`` during its creation. Really? Does it make -more sense then creating an ``Engine`` separatelly and then -**put (inject) it into** ``Car`` when ``Car`` is being created? +more sense than creating an ``Engine`` separately and then +**inject (put) it into** ``Car`` when ``Car`` is being created? .. literalinclude:: ../../examples/ioc_di_demos/car_engine_ioc.py :language: python diff --git a/docs/main/changelog.rst b/docs/main/changelog.rst index d9786b64..81ccf38a 100644 --- a/docs/main/changelog.rst +++ b/docs/main/changelog.rst @@ -11,6 +11,10 @@ Development version ------------------- - No features. +1.16.8 +------ +- Fix some typos in introduction section of documentation. + 1.16.7 ------ - Add some changes into introduction section of documentation.