diff --git a/CHANGES.md b/CHANGES.md index 1b93139..9f79da8 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -4,7 +4,7 @@ # Changelog -## v1.1.0-beta.1 +## v1.1.0 Add support for async Python. This version introduces the following methods and decorators: diff --git a/minject/__init__.py b/minject/__init__.py index 738c842..f61615e 100644 --- a/minject/__init__.py +++ b/minject/__init__.py @@ -44,7 +44,7 @@ def __init__(self, api, path): ... something = registry['something_i_need'] """ -__version__ = "1.1.0-beta.1" +__version__ = "1.1.0" from . import inject from .inject_attrs import inject_define as define, inject_field as field