diff --git a/README.rst b/README.rst index bc259d5f..634721de 100644 --- a/README.rst +++ b/README.rst @@ -56,8 +56,8 @@ Documentation *Dependency Injector* documentation is hosted on ReadTheDocs: -- `Stable version`_ -- `Latest version`_ +- `User's guide`_ +- `API docs`_ Examples -------- @@ -150,8 +150,8 @@ Your feedback is quite important! .. _PyPi: https://pypi.python.org/pypi/dependency_injector -.. _Stable version: http://dependency_injector.readthedocs.org/en/stable/ -.. _Latest version: http://dependency_injector.readthedocs.org/en/latest/ +.. _User's guide: http://dependency_injector.readthedocs.org/en/stable/ +.. _API docs: http://dependency-injector.readthedocs.org/en/stable/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 diff --git a/dependency_injector/__init__.py b/dependency_injector/__init__.py index f31b824e..56b6ac35 100644 --- a/dependency_injector/__init__.py +++ b/dependency_injector/__init__.py @@ -47,7 +47,7 @@ from .errors import UndefinedProviderError from . import catalogs catalog = catalogs -VERSION = '1.11.2' +VERSION = '1.12.0' """Version number that follows semantic versioning. :type: str diff --git a/docs/main/changelog.rst b/docs/main/changelog.rst index 524d2ad4..680eb421 100644 --- a/docs/main/changelog.rst +++ b/docs/main/changelog.rst @@ -9,6 +9,10 @@ follows `Semantic versioning`_ Development version ------------------- +- No features. + +1.12.0 +------ - Add possibility to specialize ``Factory`` provided type. - Add possibility to specialize ``Singleton`` provided type. - Add possibility to specialize ``DeclarativeCatalog`` provider type.