diff --git a/docs/main/changelog.rst b/docs/main/changelog.rst index e27202a5..8868c881 100644 --- a/docs/main/changelog.rst +++ b/docs/main/changelog.rst @@ -7,6 +7,13 @@ that were made in every particular version. From version 0.7.6 *Dependency Injector* framework strictly follows `Semantic versioning`_ +4.3.5 +----- +- Fix a bug in ``wiring`` module that caused multiple imports of the modules + when ``.wire(packages=[...])`` is used + (See issue `#320 `_). Thanks + to `Federico iskorini `_ for reporting the issue. + 4.3.4 ----- - Fix a bug in ``Configuration`` provider that resulted in not working ``.reset_override()`` diff --git a/src/dependency_injector/__init__.py b/src/dependency_injector/__init__.py index 609716f2..a1e1c40c 100644 --- a/src/dependency_injector/__init__.py +++ b/src/dependency_injector/__init__.py @@ -1,6 +1,6 @@ """Top-level package.""" -__version__ = '4.3.4' +__version__ = '4.3.5' """Version number. :type: str