Skip to content

Commit 964d932

Browse files
committed
Merge branch 'release/4.48.3'
2 parents 5a1aef9 + 1510a84 commit 964d932

File tree

11 files changed

+314
-156
lines changed

11 files changed

+314
-156
lines changed

docs/main/changelog.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ that were made in every particular version.
77
From version 0.7.6 *Dependency Injector* framework strictly
88
follows `Semantic versioning`_
99

10+
4.48.3
11+
------
12+
13+
- Allow annotated marker to be anywhere in the annotation list. Thanks to `@BrianPugh <https://github.com/BrianPugh>`_ for `#939 <https://github.com/ets-labs/python-dependency-injector/issues/939>`_.
14+
- Fix FastDepends v3 compatibility. Thanks to `@AndrianEquestrian <https://github.com/AndrianEquestrian>`_ for `#933 <https://github.com/ets-labs/python-dependency-injector/issues/933>`_.
15+
- Various type annotation improvements for providers. Thanks to `@leonarduschen <https://github.com/leonarduschen>`_ for `#927 <https://github.com/ets-labs/python-dependency-injector/pull/927>`_, `#932 <https://github.com/ets-labs/python-dependency-injector/pull/932>`_ and `#935 <https://github.com/ets-labs/python-dependency-injector/pull/935>`_.
16+
1017
4.48.2
1118
------
1219

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,8 @@ dynamic = ["version"]
5555
dependencies = [
5656
# typing.Annotated since v3.9
5757
# typing.Self and typing.assert_never since v3.11
58-
"typing-extensions; python_version<'3.11'",
58+
# typing.TypeVar default since v3.13
59+
"typing-extensions; python_version<'3.13'",
5960
]
6061

6162
[project.optional-dependencies]

src/dependency_injector/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Top-level package."""
22

3-
__version__ = "4.48.2"
3+
__version__ = "4.48.3"
44
"""Version number.
55
66
:type: str

0 commit comments

Comments
 (0)