Release 1.16.2
This commit is contained in:
parent
edde8f8bff
commit
9e5c6a13c4
|
@ -61,7 +61,7 @@ from dependency_injector.errors import (
|
|||
from dependency_injector import catalogs
|
||||
catalog = catalogs
|
||||
|
||||
VERSION = '1.16.1'
|
||||
VERSION = '1.16.2'
|
||||
"""Version number that follows semantic versioning.
|
||||
|
||||
:type: str
|
||||
|
|
|
@ -2,6 +2,7 @@ Dependency Injector --- Python dependency injection framework
|
|||
=============================================================
|
||||
|
||||
.. meta::
|
||||
:keywords: Python,DI,Dependency injection,IoC,Inversion of Control
|
||||
:google-site-verification: 6it89zX0_wccKEhAqbAiYQooS95f0BA8YfesHk6bsNA
|
||||
:description: Dependency Injector is a Python dependency injection
|
||||
framework. It was designed to be unified, developer's
|
||||
|
|
|
@ -2,6 +2,7 @@ Dependency injection and inversion of control in Python
|
|||
-------------------------------------------------------
|
||||
|
||||
.. meta::
|
||||
:keywords: Python,DI,Dependency injection,IoC,Inversion of Control
|
||||
:description: This article describes benefits of dependency injection and
|
||||
inversion of control for Python applications. Also it
|
||||
contains some Python examples that show how dependency
|
||||
|
|
|
@ -2,6 +2,7 @@ Introduction
|
|||
============
|
||||
|
||||
.. meta::
|
||||
:keywords: Python,DI,Dependency injection,IoC,Inversion of Control
|
||||
:description: Current section of documentation is designed to give some
|
||||
overview about dependency injection pattern, inversion of
|
||||
control principle and "Dependency Injector" framework.
|
||||
|
|
|
@ -2,6 +2,7 @@ Key features of Dependency Injector
|
|||
-----------------------------------
|
||||
|
||||
.. meta::
|
||||
:keywords: Python,DI,Dependency injection,IoC,Inversion of Control
|
||||
:description: This article describes key features of "Dependency Injector"
|
||||
framework. It also provides some cases and recommendations
|
||||
about usage of "Dependency Injector" framework.
|
||||
|
|
|
@ -2,6 +2,7 @@ Structure of Dependency Injector
|
|||
--------------------------------
|
||||
|
||||
.. meta::
|
||||
:keywords: Python,DI,Dependency injection,IoC,Inversion of Control
|
||||
:description: This article describes "Dependency Injector" framework
|
||||
components and their interaction between each other.
|
||||
Catalogs, providers and injections are the former
|
||||
|
|
|
@ -2,6 +2,7 @@ What is dependency injection and inversion of control?
|
|||
------------------------------------------------------
|
||||
|
||||
.. meta::
|
||||
:keywords: Python,DI,Dependency injection,IoC,Inversion of Control
|
||||
:description: This article provides definition of dependency injection,
|
||||
inversion of control and dependency inversion. It contains
|
||||
example code in Python that is refactored to be following
|
||||
|
|
|
@ -11,6 +11,10 @@ Development version
|
|||
-------------------
|
||||
- No features.
|
||||
|
||||
1.16.2
|
||||
------
|
||||
- Add some documentation improvements.
|
||||
|
||||
1.16.1
|
||||
------
|
||||
- Add ``@copy`` decorator for copying declarative catalog providers.
|
||||
|
|
Loading…
Reference in New Issue