From: Ben Darnell Date: Wed, 5 Sep 2012 04:50:58 +0000 (-0700) Subject: Post-release version bump X-Git-Tag: v3.0.0~272^2~29 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7a2442d9d65ac653789d912649fb9c63d7320a8a;p=thirdparty%2Ftornado.git Post-release version bump --- diff --git a/setup.py b/setup.py index f85185975..fc7332402 100644 --- a/setup.py +++ b/setup.py @@ -33,7 +33,7 @@ if "linux" in sys.platform.lower() and not python_26: extensions.append(distutils.core.Extension( "tornado.epoll", ["tornado/epoll.c"])) -version = "2.4" +version = "2.4.post1" if major >= 3: import setuptools # setuptools is required for use_2to3 diff --git a/tornado/__init__.py b/tornado/__init__.py index 943c34c39..fa544a020 100644 --- a/tornado/__init__.py +++ b/tornado/__init__.py @@ -25,5 +25,5 @@ from __future__ import absolute_import, division, with_statement # is zero for an official release, positive for a development branch, # or negative for a release candidate (after the base version number # has been incremented) -version = "2.4" -version_info = (2, 4, 0, 0) +version = "2.4.post1" +version_info = (2, 4, 0, 1)