From: Ben Darnell Date: Fri, 1 Jun 2012 04:39:21 +0000 (-0700) Subject: Set version number to 2.3 X-Git-Tag: v2.3.0^0 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=13598908a7872080c6cc20b0dcfbcb0ce89a3447;p=thirdparty%2Ftornado.git Set version number to 2.3 --- diff --git a/setup.py b/setup.py index b544df67e..1456f1db0 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.rc1" +version = "2.3" if major >= 3: import setuptools # setuptools is required for use_2to3 diff --git a/tornado/__init__.py b/tornado/__init__.py index 05e10780c..31daebfe6 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.rc1" -version_info = (2, 3, 0, -1) +version = "2.3" +version_info = (2, 3, 0, 0)