From 063301a0b32b6ef155c6f31bce64433cdb42430d Mon Sep 17 00:00:00 2001 From: Roman Mogylatov Date: Wed, 2 Sep 2020 21:28:09 -0400 Subject: [PATCH] Bump version to 3.36.0 --- docs/main/changelog.rst | 7 +++++-- src/dependency_injector/__init__.py | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/docs/main/changelog.rst b/docs/main/changelog.rst index 2e482c0e..498ab0e3 100644 --- a/docs/main/changelog.rst +++ b/docs/main/changelog.rst @@ -7,11 +7,14 @@ that were made in every particular version. From version 0.7.6 *Dependency Injector* framework strictly follows `Semantic versioning`_ -Development version -------------------- +3.36.0 +------ - Update providers overriding documentation and rework examples. - Update documentation on injecting provided object attributes, items or method calls. - Update documentation and example on creating a custom provider. +- Update providers index documentation page to give better overview of providers functionality. +- Fix mypy stub of the ``Provider`` to specify the protected ``._copy_overridings()`` method. +- Update copyright year in the documentation. 3.35.1 ------ diff --git a/src/dependency_injector/__init__.py b/src/dependency_injector/__init__.py index 724f9e1f..b1aa8bb1 100644 --- a/src/dependency_injector/__init__.py +++ b/src/dependency_injector/__init__.py @@ -1,6 +1,6 @@ """Dependency injector top-level package.""" -__version__ = '3.35.1' +__version__ = '3.36.0' """Version number that follows semantic versioning. :type: str