Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version to 1.0.0 #40

Merged
merged 6 commits into from
Jul 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion minject/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def __init__(self, api, path): ...
something = registry['something_i_need']
"""

__version__ = "0.1.0"
__version__ = "1.0.0"

from . import inject
from .inject_attrs import inject_define as define, inject_field as field
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "minject"
description = "A small dependency injection library for Python."
classifiers = ['Development Status :: 4 - Beta']
classifiers = ['Development Status :: 5 - Production/Stable']
dynamic = ["version"]
authors = [{ name = "Matt McHenry", email = "[email protected]" }, { name = "Alek Binion", email = "[email protected]" }, { name = "Xiyan Shao", email = "[email protected]"}, { name = "Service Framework Team", email = "[email protected]" }]
requires-python = ">=3.7"
Expand Down