From 501a551ea27e5703bc9409725c2b9c264fc1a725 Mon Sep 17 00:00:00 2001 From: Ben Darnell Date: Mon, 30 Jan 2012 23:39:31 -0800 Subject: [PATCH] Bump post-release version number (now pep 386 compliant!) --- setup.py | 2 +- tornado/__init__.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 495459e7..872c737c 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.2" +version = "2.2.post1" if major >= 3: import setuptools # setuptools is required for use_2to3 diff --git a/tornado/__init__.py b/tornado/__init__.py index f13041e4..12a94b3f 100644 --- a/tornado/__init__.py +++ b/tornado/__init__.py @@ -23,5 +23,5 @@ # 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.2" -version_info = (2, 2, 0, 0) +version = "2.2.post1" +version_info = (2, 2, 0, 1)