Release 1.16.2

This commit is contained in:
Roman Mogilatov 2016-04-23 15:00:06 +03:00
parent edde8f8bff
commit 9e5c6a13c4
8 changed files with 11 additions and 1 deletions

View File

@ -61,7 +61,7 @@ from dependency_injector.errors import (
from dependency_injector import catalogs from dependency_injector import catalogs
catalog = catalogs catalog = catalogs
VERSION = '1.16.1' VERSION = '1.16.2'
"""Version number that follows semantic versioning. """Version number that follows semantic versioning.
:type: str :type: str

View File

@ -2,6 +2,7 @@ Dependency Injector --- Python dependency injection framework
============================================================= =============================================================
.. meta:: .. meta::
:keywords: Python,DI,Dependency injection,IoC,Inversion of Control
:google-site-verification: 6it89zX0_wccKEhAqbAiYQooS95f0BA8YfesHk6bsNA :google-site-verification: 6it89zX0_wccKEhAqbAiYQooS95f0BA8YfesHk6bsNA
:description: Dependency Injector is a Python dependency injection :description: Dependency Injector is a Python dependency injection
framework. It was designed to be unified, developer's framework. It was designed to be unified, developer's

View File

@ -2,6 +2,7 @@ Dependency injection and inversion of control in Python
------------------------------------------------------- -------------------------------------------------------
.. meta:: .. meta::
:keywords: Python,DI,Dependency injection,IoC,Inversion of Control
:description: This article describes benefits of dependency injection and :description: This article describes benefits of dependency injection and
inversion of control for Python applications. Also it inversion of control for Python applications. Also it
contains some Python examples that show how dependency contains some Python examples that show how dependency

View File

@ -2,6 +2,7 @@ Introduction
============ ============
.. meta:: .. meta::
:keywords: Python,DI,Dependency injection,IoC,Inversion of Control
:description: Current section of documentation is designed to give some :description: Current section of documentation is designed to give some
overview about dependency injection pattern, inversion of overview about dependency injection pattern, inversion of
control principle and "Dependency Injector" framework. control principle and "Dependency Injector" framework.

View File

@ -2,6 +2,7 @@ Key features of Dependency Injector
----------------------------------- -----------------------------------
.. meta:: .. meta::
:keywords: Python,DI,Dependency injection,IoC,Inversion of Control
:description: This article describes key features of "Dependency Injector" :description: This article describes key features of "Dependency Injector"
framework. It also provides some cases and recommendations framework. It also provides some cases and recommendations
about usage of "Dependency Injector" framework. about usage of "Dependency Injector" framework.

View File

@ -2,6 +2,7 @@ Structure of Dependency Injector
-------------------------------- --------------------------------
.. meta:: .. meta::
:keywords: Python,DI,Dependency injection,IoC,Inversion of Control
:description: This article describes "Dependency Injector" framework :description: This article describes "Dependency Injector" framework
components and their interaction between each other. components and their interaction between each other.
Catalogs, providers and injections are the former Catalogs, providers and injections are the former

View File

@ -2,6 +2,7 @@ What is dependency injection and inversion of control?
------------------------------------------------------ ------------------------------------------------------
.. meta:: .. meta::
:keywords: Python,DI,Dependency injection,IoC,Inversion of Control
:description: This article provides definition of dependency injection, :description: This article provides definition of dependency injection,
inversion of control and dependency inversion. It contains inversion of control and dependency inversion. It contains
example code in Python that is refactored to be following example code in Python that is refactored to be following

View File

@ -11,6 +11,10 @@ Development version
------------------- -------------------
- No features. - No features.
1.16.2
------
- Add some documentation improvements.
1.16.1 1.16.1
------ ------
- Add ``@copy`` decorator for copying declarative catalog providers. - Add ``@copy`` decorator for copying declarative catalog providers.