From 23f396221e8e6276f07495e7d27e56fbff64face Mon Sep 17 00:00:00 2001 From: Aleksander Binion Date: Wed, 9 Oct 2024 16:54:16 -0400 Subject: [PATCH] fix version to match pypi --- CHANGES.md | 2 +- minject/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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