From 09d1c4ce9fd144319ce450c2eee8cdc9f19df6cd Mon Sep 17 00:00:00 2001 From: Roman Mogylatov Date: Fri, 16 Oct 2020 14:10:14 -0400 Subject: [PATCH] Bump versionto 4.0.1 --- docs/main/changelog.rst | 9 +++++++++ src/dependency_injector/__init__.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/docs/main/changelog.rst b/docs/main/changelog.rst index 1b5a9cfd..2cac0c41 100644 --- a/docs/main/changelog.rst +++ b/docs/main/changelog.rst @@ -7,6 +7,15 @@ that were made in every particular version. From version 0.7.6 *Dependency Injector* framework strictly follows `Semantic versioning`_ +4.0.1 +----- +- Extend ``Configuration.from_ini()`` and ``Configuration.from_yaml()`` typing stubs to + accept ``pathlib.Path``. The methods were already compatible with ``pathlib.Path`` + and just did not accept it in their signatures (see + `PR 300 `_). Fix + was provided by `JarnoRFB `_. Many thanks to you again, + JarnoRFB. + 4.0.0 ----- New features: diff --git a/src/dependency_injector/__init__.py b/src/dependency_injector/__init__.py index 5f1efe20..65ef6502 100644 --- a/src/dependency_injector/__init__.py +++ b/src/dependency_injector/__init__.py @@ -1,6 +1,6 @@ """Top-level package.""" -__version__ = '4.0.0' +__version__ = '4.0.1' """Version number. :type: str