Release 1.16.8

This commit is contained in:
Roman Mogilatov 2016-04-27 02:04:18 +03:00
parent 672eb6dfd7
commit 69043d9c4e
3 changed files with 7 additions and 3 deletions

View File

@ -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

View File

@ -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

View File

@ -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.