Skip to content

Commit e0b0a1e

Browse files
committed
Merge branch 'release/4.28.1' into master
2 parents 25c966f + e6a0973 commit e0b0a1e

File tree

7 files changed

+244
-233
lines changed

7 files changed

+244
-233
lines changed

docs/introduction/di_in_python.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ Choose one of the following as a next step:
281281
- :ref:`application-single-container`
282282
- :ref:`application-multiple-containers`
283283
- :ref:`decoupled-packages`
284-
- :ref:`boto3`
284+
- :ref:`boto3-example`
285285
- :ref:`django-example`
286286
- :ref:`flask-example`
287287
- :ref:`flask-blueprints-example`

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.28.1
11+
------
12+
- Fix async mode mode exception handling issue in ``Dependency`` provider.
13+
See issue: `#409 <https://github.com/ets-labs/python-dependency-injector/issues/409>`_.
14+
Thanks to `@wackazong <https://github.com/wackazong>`_ for reporting the issue.
15+
- Fix links to ``boto3`` example.
16+
1017
4.28.0
1118
------
1219
- Add wiring injections into modules and class attributes.

docs/wiring.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ Take a look at other application examples:
428428
- :ref:`application-single-container`
429429
- :ref:`application-multiple-containers`
430430
- :ref:`decoupled-packages`
431-
- :ref:`boto3`
431+
- :ref:`boto3-example`
432432
- :ref:`django-example`
433433
- :ref:`flask-example`
434434
- :ref:`flask-blueprints-example`

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.28.0'
3+
__version__ = '4.28.1'
44
"""Version number.
55
66
:type: str

0 commit comments

Comments
 (0)