From 136acc0efff4bde5f2a244ddab98ca2bb327b80e Mon Sep 17 00:00:00 2001 From: David Salvisberg Date: Wed, 15 Jan 2025 12:55:56 +0100 Subject: [PATCH] Release 1.2.0 --- HISTORY.rst | 3 +++ pyproject.toml | 2 +- sedate/__init__.py | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) 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)