Skip to content

Commit 888b395

Browse files
committed
Add release note and bump version.
1 parent 0ba2bb2 commit 888b395

File tree

4 files changed

+12
-2
lines changed

4 files changed

+12
-2
lines changed

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,10 @@ You can find the source code for `py-dependency-injection` on [GitHub](https://g
8383

8484
## Release Notes
8585

86+
### [1.0.0-alpha.8](https://github.com/runemalm/py-dependency-injection/releases/tag/v1.0.0-alpha.8) (2024-06-07)
87+
88+
- Bug Fix: Fixed an issue in the dependency resolution logic where registered constructor arguments were not properly merged with automatically injected dependencies. This ensures that constructor arguments specified during registration are correctly combined with dependencies resolved by the container.
89+
8690
### [1.0.0-alpha.7](https://github.com/runemalm/py-dependency-injection/releases/tag/v1.0.0-alpha.7) (2024-03-24)
8791

8892
- Documentation Update: Updated the documentation to provide clearer instructions and more comprehensive examples.

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
version = "1.0"
3636

3737
# The full version, including alpha/beta/rc tags
38-
release = "1.0.0-alpha.7"
38+
release = "1.0.0-alpha.8"
3939

4040

4141
# -- General configuration ---------------------------------------------------

docs/releases.rst

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@
66
Version History
77
###############
88

9+
**1.0.0-alpha.8 (2024-06-07)**
10+
11+
- Bug Fix: Fixed an issue in the dependency resolution logic where registered constructor arguments were not properly merged with automatically injected dependencies. This ensures that constructor arguments specified during registration are correctly combined with dependencies resolved by the container.
12+
13+
`View release on GitHub <https://github.com/runemalm/py-dependency-injection/releases/tag/v1.0.0-alpha.8>`_
14+
915
**1.0.0-alpha.7 (2024-03-24)**
1016

1117
- Documentation Update: Updated the documentation to provide clearer instructions and more comprehensive examples.

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
setup(
88
name="py-dependency-injection",
9-
version="1.0.0-alpha.7",
9+
version="1.0.0-alpha.8",
1010
author="David Runemalm, 2024",
1111
author_email="[email protected]",
1212
description="A dependency injection library for Python.",

0 commit comments

Comments
 (0)