summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Bishop <stuart@stuartbishop.net>2014-03-25 13:51:53 +0700
committerStuart Bishop <stuart@stuartbishop.net>2014-03-25 13:51:53 +0700
commit69e3e5bdee858dbab92fa420ab92b536bc923b94 (patch)
treef4dde3c93999fe151a3738196218d54941a80d12
parent839fd74df8b9ed3b3cdbca17f85475fe1efc602a (diff)
downloadpytz-69e3e5bdee858dbab92fa420ab92b536bc923b94.tar.gz
Bump version numbers to 2014.2/2014b
-rw-r--r--src/pytz/__init__.py4
-rw-r--r--src/pytz/tests/test_tzinfo.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/pytz/__init__.py b/src/pytz/__init__.py
index 5880e87..647d091 100644
--- a/src/pytz/__init__.py
+++ b/src/pytz/__init__.py
@@ -9,8 +9,8 @@ on how to use these modules.
'''
# The Olson database is updated several times a year.
-OLSON_VERSION = '2014a'
-VERSION = '2014.1.1' # Switching to pip compatible version numbering.
+OLSON_VERSION = '2014b'
+VERSION = '2014.2' # Switching to pip compatible version numbering.
__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 cd9b59b..a25a0f3 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='2014.1.1'
+EXPECTED_VERSION='2014.2'
EXPECTED_OLSON_VERSION='2014a'
fmt = '%Y-%m-%d %H:%M:%S %Z%z'