From 0846140fd7ae7784dd0330a63a93aff8d36e02fd Mon Sep 17 00:00:00 2001 From: Ben Darnell Date: Mon, 3 Sep 2012 22:07:23 -0700 Subject: [PATCH] Set version number to 2.4 --- setup.py | 2 +- tornado/__init__.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index a0a099d2..f8518597 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.3.post1" +version = "2.4" if major >= 3: import setuptools # setuptools is required for use_2to3 diff --git a/tornado/__init__.py b/tornado/__init__.py index 61551208..943c34c3 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.3.post1" -version_info = (2, 3, 0, 1) +version = "2.4" +version_info = (2, 4, 0, 0)