Skip to content

Commit 9b66d4b

Browse files
committedFeb 23, 2025·
Bump version to v4.46.0
1 parent 7d4ebec commit 9b66d4b

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed
 

‎docs/main/changelog.rst

+19
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,25 @@ that were made in every particular version.
77
From version 0.7.6 *Dependency Injector* framework strictly
88
follows `Semantic versioning`_
99

10+
4.46.0
11+
------
12+
13+
- Add option to disable env var interpolation in configs (`#861 <https://github.com/ets-labs/python-dependency-injector/pull/861>`_)
14+
- Fix ``Closing`` dependency resolution (`#852 <https://github.com/ets-labs/python-dependency-injector/pull/852>`_)
15+
- Add support for ``inspect.iscoroutinefunction()`` in ``Coroutine`` provider (`#830 <https://github.com/ets-labs/python-dependency-injector/pull/830>`_)
16+
- Fix broken wiring of sync inject-decorated methods (`#673 <https://github.com/ets-labs/python-dependency-injector/pull/673>`_)
17+
- Add support for ``typing.Annotated`` (`#721 <https://github.com/ets-labs/python-dependency-injector/pull/721>`_, `#853 <https://github.com/ets-labs/python-dependency-injector/pull/853>`_)
18+
- Documentation updates for movie-lister example (`#747 <https://github.com/ets-labs/python-dependency-injector/pull/747>`_)
19+
- Fix type propagation in ``Provider.provider`` (`#744 <https://github.com/ets-labs/python-dependency-injector/pull/744>`_)
20+
21+
Many thanks for the contributions to:
22+
- `ZipFile <https://github.com/ZipFile>`_
23+
- `Yegor Statkevich <https://github.com/jazzthief>`_
24+
- `Federico Tomasi <https://github.com/federinik>`_
25+
- `Martin Lafrance <https://github.com/martlaf>`_
26+
- `Philip Bjorge <https://github.com/philipbjorge>`_
27+
- `Ilya Kazakov <https://github.com/mrKazzila>`_
28+
1029
4.45.0
1130
--------
1231
- Add Starlette lifespan handler implementation (`#683 <https://github.com/ets-labs/python-dependency-injector/pull/683>`_).

‎src/dependency_injector/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Top-level package."""
22

3-
__version__ = "4.45.0"
3+
__version__ = "4.46.0"
44
"""Version number.
55
66
:type: str

0 commit comments

Comments
 (0)
Please sign in to comment.