summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Bishop <stuart@stuartbishop.net>2022-08-12 10:18:04 +1000
committerStuart Bishop <stuart@stuartbishop.net>2022-08-12 10:18:04 +1000
commitc7cf378ab64b4b1cd2786af66e7072587b60f4f6 (patch)
tree821b2027d6373253d6d5cebd1debeb0ff5e7564b
parentd0d613c31ae3809550d02c8c245f016a1f388edb (diff)
downloadpytz-git-c7cf378ab64b4b1cd2786af66e7072587b60f4f6.tar.gz
Bump version numbers to 2022b/2022.2
-rw-r--r--src/pytz/__init__.py4
-rw-r--r--src/pytz/tests/test_tzinfo.py4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/pytz/__init__.py b/src/pytz/__init__.py
index 17a8e91..0dff5f1 100644
--- a/src/pytz/__init__.py
+++ b/src/pytz/__init__.py
@@ -22,8 +22,8 @@ from pytz.tzfile import build_tzinfo
# The IANA (nee Olson) database is updated several times a year.
-OLSON_VERSION = '2022a'
-VERSION = '2022.1' # pip compatible version number.
+OLSON_VERSION = '2022b'
+VERSION = '2022.2' # pip compatible version number.
__version__ = VERSION
OLSEN_VERSION = OLSON_VERSION # Old releases had this misspelling
diff --git a/src/pytz/tests/test_tzinfo.py b/src/pytz/tests/test_tzinfo.py
index ae592b3..fe396ea 100644
--- a/src/pytz/tests/test_tzinfo.py
+++ b/src/pytz/tests/test_tzinfo.py
@@ -27,8 +27,8 @@ from pytz.tzinfo import DstTzInfo, StaticTzInfo # noqa
# I test for expected version to ensure the correct version of pytz is
# actually being tested.
-EXPECTED_VERSION = '2022.1'
-EXPECTED_OLSON_VERSION = '2022a'
+EXPECTED_VERSION = '2022.2'
+EXPECTED_OLSON_VERSION = '2022b'
fmt = '%Y-%m-%d %H:%M:%S %Z%z'