From b623e6d205bd64ff73f63b38d6b4e0f25702be8d Mon Sep 17 00:00:00 2001 From: Nicco Kunzmann Date: Mon, 30 Sep 2024 04:31:37 +0100 Subject: [PATCH 1/2] update x-wr-timezone --- requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index f8c9693..14cecb0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,6 +3,7 @@ icalendar >= 5.0.0, < 7.0.0 python-dateutil >= 2.8.1, < 3.0.0 -x-wr-timezone == 0.* +x-wr-timezone == 1.*; python_version >= "3.9" +x-wr-timezone == 0.*; python_version <= "3.8" backports.zoneinfo; python_version == "3.7" or python_version == "3.8" tzdata; python_version >= "3.7" From cb0f4f51f20042ed40c74c9002e1437fc799a160 Mon Sep 17 00:00:00 2001 From: Nicco Kunzmann Date: Mon, 30 Sep 2024 04:32:43 +0100 Subject: [PATCH 2/2] v3.3.2 --- README.rst | 4 ++++ setup.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 7ff0b04..17646ba 100644 --- a/README.rst +++ b/README.rst @@ -569,6 +569,10 @@ To release new versions, Changelog --------- +- v3.3.2 + + - Update x-wr-timezone + - v3.3.1 - Support RDATE with PERIOD value type where the end is a duration, see `PR 180 `_ diff --git a/setup.py b/setup.py index 71a6cc3..379387b 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ HERE = os.path.abspath(os.path.dirname(__file__)) sys.path.insert(0, HERE) # for package import -__version__ = "3.3.1" +__version__ = "3.3.2" __author__ = "Nicco Kunzmann"