summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Bishop <stuart@stuartbishop.net>2021-09-26 19:30:50 +1000
committerStuart Bishop <stuart@stuartbishop.net>2021-09-26 19:30:50 +1000
commit881c6712fcee5c889037cc22415f7bd7f3fa993f (patch)
treeb59cdaefc2b3e14eabd67bd99d7bf5504d934255
parent00f969b51342ae2c4bc881b882271880e1774874 (diff)
downloadpytz-git-881c6712fcee5c889037cc22415f7bd7f3fa993f.tar.gz
Bump version numbers to 2021.2/2021b
-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 3de0391..cee4e2d 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 = '2021a'
-VERSION = '2021.1' # pip compatible version number.
+OLSON_VERSION = '2021b'
+VERSION = '2021.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 69ac1b5..54a4fde 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 = '2021.1'
-EXPECTED_OLSON_VERSION = '2021a'
+EXPECTED_VERSION = '2021.2'
+EXPECTED_OLSON_VERSION = '2021b'
fmt = '%Y-%m-%d %H:%M:%S %Z%z'