From: Ben Darnell Date: Wed, 22 Jun 2011 05:28:35 +0000 (-0700) Subject: Set version number to 2.0 X-Git-Tag: v2.0.0^0 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=94078a68286abca52854cede8bb52a1cee1d815b;p=thirdparty%2Ftornado.git Set version number to 2.0 --- diff --git a/setup.py b/setup.py index 4d731ca02..77c9d23fe 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.0rc1" +version = "2.0" if major >= 3: import setuptools # setuptools is required for use_2to3 diff --git a/tornado/__init__.py b/tornado/__init__.py index d7618b91a..9222a28c3 100644 --- a/tornado/__init__.py +++ b/tornado/__init__.py @@ -16,5 +16,5 @@ """The Tornado web server and tools.""" -version = "2.0rc1" +version = "2.0" version_info = (2, 0, 0)