summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Bishop <stuart@stuartbishop.net>2012-03-05 15:34:49 +0700
committerStuart Bishop <stuart@stuartbishop.net>2012-03-05 15:34:49 +0700
commit802a987b8d45bbd787eb10802e633ad9841b64ec (patch)
treee7b0c0e9520d1188b4f4191a6175f8e2e924eb6d
parent8dc34165aa7abecc3f4263d0418d6868689cc1cd (diff)
downloadpytz-802a987b8d45bbd787eb10802e633ad9841b64ec.tar.gz
Bump version numbers
-rw-r--r--src/pytz/__init__.py2
-rw-r--r--src/pytz/tests/test_tzinfo.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/pytz/__init__.py b/src/pytz/__init__.py
index a8c9538..e22cce3 100644
--- a/src/pytz/__init__.py
+++ b/src/pytz/__init__.py
@@ -9,7 +9,7 @@ on how to use these modules.
'''
# The Olson database is updated several times a year.
-OLSON_VERSION = '2011n'
+OLSON_VERSION = '2012b'
VERSION = OLSON_VERSION
# Version format for a patch release - only one so far.
#VERSION = OLSON_VERSION + '.2'
diff --git a/src/pytz/tests/test_tzinfo.py b/src/pytz/tests/test_tzinfo.py
index 4f9df0b..85cf451 100644
--- a/src/pytz/tests/test_tzinfo.py
+++ b/src/pytz/tests/test_tzinfo.py
@@ -21,7 +21,7 @@ from pytz.tzinfo import DstTzInfo, StaticTzInfo
# I test for expected version to ensure the correct version of pytz is
# actually being tested.
-EXPECTED_VERSION='2011n'
+EXPECTED_VERSION='2012b'
fmt = '%Y-%m-%d %H:%M:%S %Z%z'