File tree Expand file tree Collapse file tree 4 files changed +14
-4
lines changed Expand file tree Collapse file tree 4 files changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -83,6 +83,10 @@ You can find the source code for `py-dependency-injection` on [GitHub](https://g
83
83
84
84
## Release Notes
85
85
86
+ ### [ 1.0.0-beta.2] ( https://github.com/runemalm/py-dependency-injection/releases/tag/v1.0.0-beta.2 ) (2025-06-09)
87
+
88
+ - ** Enhancement** : Constructor parameters with default values or ` Optional[...] ` are now supported without requiring explicit registration.
89
+
86
90
### [ 1.0.0-beta.1] ( https://github.com/runemalm/py-dependency-injection/releases/tag/v1.0.0-beta.1 ) (2025-01-06)
87
91
88
92
- ** Transition to Beta** : Transitioned from alpha to beta. Features have been stabilized and are ready for broader testing.
Original file line number Diff line number Diff line change 28
28
# -- Project information -----------------------------------------------------
29
29
30
30
project = "py-dependency-injection"
31
- copyright = "2024 , David Runemalm"
31
+ copyright = "2025 , David Runemalm"
32
32
author = "David Runemalm"
33
33
34
34
# The version
35
35
version = "1.0"
36
36
37
37
# The full version, including alpha/beta/rc tags
38
- release = "1.0.0-beta.1 "
38
+ release = "1.0.0-beta.2 "
39
39
40
40
41
41
# -- General configuration ---------------------------------------------------
Original file line number Diff line number Diff line change 7
7
Version History
8
8
###############
9
9
10
+ **1.0.0-beta.2 (2025-06-09) **
11
+
12
+ - **Enhancement **: Constructor parameters with default values or `Optional[...] ` are now supported without requiring explicit registration.
13
+
14
+ `View release on GitHub <https://github.com/runemalm/py-dependency-injection/releases/tag/v1.0.0-beta.2 >`_
15
+
10
16
**1.0.0-beta.1 (2025-01-06) **
11
17
12
18
- **Transition to Beta **: Transitioned from alpha to beta. Features have been stabilized and are ready for broader testing.
Original file line number Diff line number Diff line change 6
6
7
7
setup (
8
8
name = "py-dependency-injection" ,
9
- version = "1.0.0-beta.1 " ,
10
- author = "David Runemalm, 2024 " ,
9
+ version = "1.0.0-beta.2 " ,
10
+ author = "David Runemalm, 2025 " ,
11
11
author_email = "david.runemalm@gmail.com" ,
12
12
description = "A dependency injection library for Python." ,
13
13
long_description = long_description ,
You can’t perform that action at this time.
0 commit comments