Skip to content

Commit 86070ff

Browse files
committed
Add release notes and bump version.
1 parent 6374a7d commit 86070ff

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,9 +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.11](https://github.com/runemalm/py-dependency-injection/releases/tag/v1.0.0-alpha.11) (2024-08-xx)
86+
### [1.0.0-alpha.11](https://github.com/runemalm/py-dependency-injection/releases/tag/v1.0.0-alpha.11) (2025-01-06)
8787

8888
- **Removal**: We have removed the dependency container getter and setter functions, as well as the RegistrationSerializer class, which were first introduced in v1.0.0-alpha.9. This decision reflects our focus on maintaining a streamlined library that emphasizes core functionality. These features, which would not be widely used, added unnecessary complexity without offering significant value. By removing them, we are reinforcing our commitment to our design principles.
89+
- **Enhancement**: Added suppprt for configuring default scope name. Either a static string value, or a callable that returns the name.
8990

9091
### [1.0.0-alpha.10](https://github.com/runemalm/py-dependency-injection/releases/tag/v1.0.0-alpha.10) (2024-08-11)
9192

docs/releases.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@
66
Version History
77
###############
88

9+
**1.0.0-alpha.11 (2025-01-06)**
10+
11+
- **Removal**: We have removed the dependency container getter and setter functions, as well as the RegistrationSerializer class, which were first introduced in v1.0.0-alpha.9. This decision reflects our focus on maintaining a streamlined library that emphasizes core functionality. These features, which would not be widely used, added unnecessary complexity without offering significant value. By removing them, we are reinforcing our commitment to our design principles.
12+
- **Enhancement**: Added suppprt for configuring default scope name. Either a static string value, or a callable that returns the name.
13+
14+
`View release on GitHub <https://github.com/runemalm/py-dependency-injection/releases/tag/v1.0.0-alpha.11>`_
15+
916
**1.0.0-alpha.10 (2024-08-11)**
1017

1118
- **Tagged Constructor Injection**: Introduced support for constructor injection using the `Tagged`, `AnyTagged`, and `AllTagged` classes. This allows for seamless injection of dependencies that have been registered with specific tags, enhancing flexibility and control in managing your application's dependencies.

setup.py

Lines changed: 1 addition & 1 deletion
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.10",
9+
version="1.0.0-alpha.11",
1010
author="David Runemalm, 2024",
1111
author_email="david.runemalm@gmail.com",
1212
description="A dependency injection library for Python.",

0 commit comments

Comments
 (0)