From: Ben Darnell Date: Wed, 21 Sep 2011 04:21:52 +0000 (-0700) Subject: Set version number to 2.1 X-Git-Tag: v2.1.0^0 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b419316cc72ec7c91239e6a8642088cda4cc3266;p=thirdparty%2Ftornado.git Set version number to 2.1 --- diff --git a/setup.py b/setup.py index d31e379aa..5e4eb8721 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.0git" +version = "2.1" if major >= 3: import setuptools # setuptools is required for use_2to3 diff --git a/tornado/__init__.py b/tornado/__init__.py index bbe71e69f..1df0a4afe 100644 --- a/tornado/__init__.py +++ b/tornado/__init__.py @@ -16,5 +16,5 @@ """The Tornado web server and tools.""" -version = "2.0git" -version_info = (2, 0, 0) +version = "2.1" +version_info = (2, 1, 0)