From 2103420fb9b3ef7562da344293a9f92c9696544d Mon Sep 17 00:00:00 2001 From: Roman Mogilatov Date: Thu, 26 Nov 2015 15:50:12 +0200 Subject: [PATCH] 1.11.0 release --- dependency_injector/__init__.py | 2 +- docs/main/changelog.rst | 9 +++++++++ setup.py | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/dependency_injector/__init__.py b/dependency_injector/__init__.py index 990eadd0..fab1bf88 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 = '0.11.0' +VERSION = '1.11.0' """Version number that follows semantic versioning. :type: str diff --git a/docs/main/changelog.rst b/docs/main/changelog.rst index ec58572c..c0c8eced 100644 --- a/docs/main/changelog.rst +++ b/docs/main/changelog.rst @@ -11,6 +11,15 @@ Development version ------------------- - No features. +1.11.0 +------ +Previous state of *Dependency Injector* framework (0.11.0 version) is +considered to be production ready / stable, so current release is considered +to be the first major release. + +- Increase major version. +- Backward compatibility with all previous versions above 0.7.6 has been saved. + 0.11.0 ------ - Rename ``AbstractCatalog`` to ``DeclarativeCatalog`` diff --git a/setup.py b/setup.py index 23340df4..65956bbd 100644 --- a/setup.py +++ b/setup.py @@ -75,7 +75,7 @@ setup(name='dependency_injector', 'IoC container', ], classifiers=[ - 'Development Status :: 4 - Beta', + 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent',