summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Bishop <stuart@stuartbishop.net>2013-11-05 19:46:57 +0700
committerStuart Bishop <stuart@stuartbishop.net>2013-11-05 19:46:57 +0700
commitd4ac4e52e0da663fe4c0c0c9f1e0a78bf583278b (patch)
tree8ccb6a5ae8bfd7059bc10247653a4e7e299a8ce7
parent634fbd6d116d39e67d7ed03f643bcdc4ea329fca (diff)
downloadpytz-d4ac4e52e0da663fe4c0c0c9f1e0a78bf583278b.tar.gz
Document release announcementsrelease_2013.8
-rw-r--r--src/README.txt5
-rw-r--r--src/pytz/__init__.py4
-rw-r--r--src/pytz/tests/test_tzinfo.py2
3 files changed, 8 insertions, 3 deletions
diff --git a/src/README.txt b/src/README.txt
index cfc84a0..9dcbfa0 100644
--- a/src/README.txt
+++ b/src/README.txt
@@ -517,6 +517,11 @@ using::
bzr branch lp:pytz
+Announcements of new releases are made on
+`Launchpad <https://launchpad.net/pytz>`_, and the
+`Atom feed <http://feeds.launchpad.net/pytz/announcements.atom>`_
+hosted there.
+
Bugs, Feature Requests & Patches
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
diff --git a/src/pytz/__init__.py b/src/pytz/__init__.py
index eae1d12..28fd08d 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 = '2013g'
-VERSION = '2013.7' # Switching to pip compatible version numbering.
+OLSON_VERSION = '2013h'
+VERSION = '2013.8' # 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 fb08852..2823fbe 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='2013.7'
+EXPECTED_VERSION='2013.8'
fmt = '%Y-%m-%d %H:%M:%S %Z%z'