Skip to content

Commit 7f5eec7

Browse files
committed
Bump version to v1.0.0-beta.2
1 parent 456a6e6 commit 7f5eec7

File tree

4 files changed

+14
-4
lines changed

4 files changed

+14
-4
lines changed

README.md

Lines changed: 4 additions & 0 deletions
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-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+
8690
### [1.0.0-beta.1](https://github.com/runemalm/py-dependency-injection/releases/tag/v1.0.0-beta.1) (2025-01-06)
8791

8892
- **Transition to Beta**: Transitioned from alpha to beta. Features have been stabilized and are ready for broader testing.

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@
2828
# -- Project information -----------------------------------------------------
2929

3030
project = "py-dependency-injection"
31-
copyright = "2024, David Runemalm"
31+
copyright = "2025, David Runemalm"
3232
author = "David Runemalm"
3333

3434
# The version
3535
version = "1.0"
3636

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

4040

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

docs/releases.rst

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

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+
1016
**1.0.0-beta.1 (2025-01-06)**
1117

1218
- **Transition to Beta**: Transitioned from alpha to beta. Features have been stabilized and are ready for broader testing.

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66

77
setup(
88
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",
1111
author_email="david.runemalm@gmail.com",
1212
description="A dependency injection library for Python.",
1313
long_description=long_description,

0 commit comments

Comments
 (0)