From 9e5c6a13c48bc096bca83e78a786ba0e68c8c748 Mon Sep 17 00:00:00 2001 From: Roman Mogilatov Date: Sat, 23 Apr 2016 15:00:06 +0300 Subject: [PATCH] Release 1.16.2 --- dependency_injector/__init__.py | 2 +- docs/index.rst | 1 + docs/introduction/di_in_python.rst | 1 + docs/introduction/index.rst | 1 + docs/introduction/key_features.rst | 1 + docs/introduction/structure.rst | 1 + docs/introduction/what_is_di.rst | 1 + docs/main/changelog.rst | 4 ++++ 8 files changed, 11 insertions(+), 1 deletion(-) diff --git a/dependency_injector/__init__.py b/dependency_injector/__init__.py index 5057b234..545c9cd7 100644 --- a/dependency_injector/__init__.py +++ b/dependency_injector/__init__.py @@ -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 diff --git a/docs/index.rst b/docs/index.rst index a7242a4b..0f24c9c0 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -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 diff --git a/docs/introduction/di_in_python.rst b/docs/introduction/di_in_python.rst index 27010b14..0e81c1b2 100644 --- a/docs/introduction/di_in_python.rst +++ b/docs/introduction/di_in_python.rst @@ -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 diff --git a/docs/introduction/index.rst b/docs/introduction/index.rst index a94b6bf0..3e7ce7cc 100644 --- a/docs/introduction/index.rst +++ b/docs/introduction/index.rst @@ -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. diff --git a/docs/introduction/key_features.rst b/docs/introduction/key_features.rst index cbec717b..a4f11038 100644 --- a/docs/introduction/key_features.rst +++ b/docs/introduction/key_features.rst @@ -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. diff --git a/docs/introduction/structure.rst b/docs/introduction/structure.rst index e58c274a..3756e352 100644 --- a/docs/introduction/structure.rst +++ b/docs/introduction/structure.rst @@ -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 diff --git a/docs/introduction/what_is_di.rst b/docs/introduction/what_is_di.rst index 4d464586..05b9b169 100644 --- a/docs/introduction/what_is_di.rst +++ b/docs/introduction/what_is_di.rst @@ -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 diff --git a/docs/main/changelog.rst b/docs/main/changelog.rst index 0c14ca1b..b0d4ae51 100644 --- a/docs/main/changelog.rst +++ b/docs/main/changelog.rst @@ -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.