Skip to content

Commit

Permalink
Release 1.16.8
Browse files Browse the repository at this point in the history
  • Loading branch information
rmk135 committed Apr 26, 2016
1 parent 672eb6d commit 10b510b
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.rst
Expand Up @@ -136,8 +136,8 @@ Your feedback is quite important!


.. _PyPi: https://pypi.python.org/pypi/dependency_injector
.. _User's guide: http://python-dependency-injector.ets-labs.org/en/stable/
.. _API docs: http://python-dependency-injector.ets-labs.org/en/stable/api/
.. _User's guide: http://python-dependency-injector.ets-labs.org/
.. _API docs: http://python-dependency-injector.ets-labs.org/api/
.. _SLOC: http://en.wikipedia.org/wiki/Source_lines_of_code
.. _SOLID: http://en.wikipedia.org/wiki/SOLID_%28object-oriented_design%29
.. _IoC: http://en.wikipedia.org/wiki/Inversion_of_control
Expand Down
2 changes: 1 addition & 1 deletion dependency_injector/__init__.py
Expand Up @@ -61,7 +61,7 @@
from dependency_injector import catalogs
catalog = catalogs

VERSION = '1.16.7'
VERSION = '1.16.8'
"""Version number that follows semantic versioning.
:type: str
Expand Down
4 changes: 2 additions & 2 deletions docs/introduction/di_in_python.rst
Expand Up @@ -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
Expand Down
6 changes: 6 additions & 0 deletions docs/main/changelog.rst
Expand Up @@ -11,6 +11,12 @@ Development version
-------------------
- No features.

1.16.8
------
- Fix some typos in introduction section of documentation.
- Stop keeping multiple documentation version in order to having "latest" one
as a single source.

1.16.7
------
- Add some changes into introduction section of documentation.
Expand Down

0 comments on commit 10b510b

Please sign in to comment.