From 6dd03c06f656804220fd3e7226a6c560160b34fe Mon Sep 17 00:00:00 2001 From: Ben Darnell Date: Fri, 7 Oct 2011 01:07:58 -0700 Subject: [PATCH] Bump version number in the master branch --- setup.py | 2 +- tornado/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 8ef49bfb..9987bb16 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.1.1" +version = "2.1.1git" if major >= 3: import setuptools # setuptools is required for use_2to3 diff --git a/tornado/__init__.py b/tornado/__init__.py index c975de77..ea48b0f0 100644 --- a/tornado/__init__.py +++ b/tornado/__init__.py @@ -16,5 +16,5 @@ """The Tornado web server and tools.""" -version = "2.1.1" +version = "2.1.1git" version_info = (2, 1, 1)