Skip to content

Commit e0216d3

Browse files
committed
Transition to beta.
1 parent 2bca9d1 commit e0216d3

File tree

5 files changed

+14
-10
lines changed

5 files changed

+14
-10
lines changed

README.md

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

88+
- **Transition to Beta**: Transitioned from alpha to beta. Features have been stabilized and are ready for broader testing.
8889
- **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.
8990
- **Enhancement**: Added suppprt for configuring default scope name. Either a static string value, or a callable that returns the name.
9091

docs/conf.py

Lines changed: 1 addition & 1 deletion
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.10"
38+
release = "1.0.0-beta.1"
3939

4040

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

docs/index.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
.. warning::
1+
.. note::
22

3-
This library is currently in the alpha stage of development. Expect changes and improvements as we work towards a stable release.
3+
This library is currently in the beta stage of development.
4+
While features are stable, some minor adjustments may occur before the final release.
45

56
py-dependency-injection
67
=======================

docs/releases.rst

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
1-
.. warning::
1+
.. note::
22

3-
This library is currently in the alpha stage of development. Expect changes and improvements as we work towards a stable release.
3+
This library is currently in the beta stage of development.
4+
While features are stable, some minor adjustments may occur before the final release.
45

56
###############
67
Version History
78
###############
89

9-
**1.0.0-alpha.11 (2025-01-06)**
10+
**1.0.0-beta.1 (2025-01-06)**
1011

12+
- **Transition to Beta**: Transitioned from alpha to beta. Features have been stabilized and are ready for broader testing.
1113
- **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.
1214
- **Enhancement**: Added suppprt for configuring default scope name. Either a static string value, or a callable that returns the name.
1315

14-
`View release on GitHub <https://github.com/runemalm/py-dependency-injection/releases/tag/v1.0.0-alpha.11>`_
16+
`View release on GitHub <https://github.com/runemalm/py-dependency-injection/releases/tag/v1.0.0-beta.1>`_
1517

1618
**1.0.0-alpha.10 (2024-08-11)**
1719

setup.py

Lines changed: 2 additions & 2 deletions
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.11",
9+
version="1.0.0-beta.1",
1010
author="David Runemalm, 2024",
1111
author_email="david.runemalm@gmail.com",
1212
description="A dependency injection library for Python.",
@@ -34,7 +34,7 @@
3434
],
3535
python_requires=">=3.7",
3636
classifiers=[
37-
"Development Status :: 3 - Alpha",
37+
"Development Status :: 4 - Beta",
3838
"Intended Audience :: Developers",
3939
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
4040
"Programming Language :: Python :: 3.7",

0 commit comments

Comments
 (0)