diff --git a/HISTORY.rst b/HISTORY.rst index d39f59d..a3f509e 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,9 @@ Changelog --------- +1.2.0 (15.01.2025) +~~~~~~~~~~~~~~~~~~~ + - Adds support for Python 3.13. Drops support for Python 3.8 [Daverball] diff --git a/pyproject.toml b/pyproject.toml index aaf94c4..89f714e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,7 +29,7 @@ exclude_lines = [ ] [tool.bumpversion] -current_version = "1.1.1" +current_version = "1.2.0" commit = true message = "Release {new_version}" tag = true diff --git a/sedate/__init__.py b/sedate/__init__.py index 89b3884..e673de6 100644 --- a/sedate/__init__.py +++ b/sedate/__init__.py @@ -36,7 +36,7 @@ from .types import TzInfo from .types import TzInfoOrName -__version__ = '1.1.1' +__version__ = '1.2.0' mindatetime = pytz.utc.localize(datetime.min) maxdatetime = pytz.utc.localize(datetime.max)