diff --git a/.bumpversion.cfg b/.bumpversion.cfg index c810133..ab0f4a6 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.3 +current_version = 1.1.0 commit = True tag = True message = Release {new_version} diff --git a/HISTORY.rst b/HISTORY.rst index c639fb6..48fd6fe 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,12 @@ Changelog --------- +1.1.0 (2024-06-11) +~~~~~~~~~~~~~~~~~~~ + +- Adds support for Python 3.11 and 3.12. Drops support for Python 3.7. + [Daverball] + 1.0.3 (2023-03-30) ~~~~~~~~~~~~~~~~~~~ diff --git a/sedate/__init__.py b/sedate/__init__.py index c5f66b9..bba114c 100644 --- a/sedate/__init__.py +++ b/sedate/__init__.py @@ -36,7 +36,7 @@ from .types import TzInfo from .types import TzInfoOrName -__version__ = '1.0.3' +__version__ = '1.1.0' mindatetime = pytz.utc.localize(datetime.min) maxdatetime = pytz.utc.localize(datetime.max)