From 7a2442d9d65ac653789d912649fb9c63d7320a8a Mon Sep 17 00:00:00 2001 From: Ben Darnell Date: Tue, 4 Sep 2012 21:50:58 -0700 Subject: [PATCH] Post-release version bump --- setup.py | 2 +- tornado/__init__.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index f8518597..fc733240 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 943c34c3..fa544a02 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)