Set version number to 2.3rc1

This commit is contained in:
Ben Darnell 2012-05-27 22:10:03 -07:00
parent a358a73547
commit 5cd350ace0
2 changed files with 3 additions and 3 deletions

View File

@ -33,7 +33,7 @@ if "linux" in sys.platform.lower() and not python_26:
extensions.append(distutils.core.Extension( extensions.append(distutils.core.Extension(
"tornado.epoll", ["tornado/epoll.c"])) "tornado.epoll", ["tornado/epoll.c"]))
version = "2.2.post1" version = "2.3.rc1"
if major >= 3: if major >= 3:
import setuptools # setuptools is required for use_2to3 import setuptools # setuptools is required for use_2to3

View File

@ -25,5 +25,5 @@ from __future__ import absolute_import, division, with_statement
# is zero for an official release, positive for a development branch, # is zero for an official release, positive for a development branch,
# or negative for a release candidate (after the base version number # or negative for a release candidate (after the base version number
# has been incremented) # has been incremented)
version = "2.2.post1" version = "2.3.rc1"
version_info = (2, 2, 0, 1) version_info = (2, 3, 0, -1)