From: Ben Darnell Date: Sun, 20 Feb 2011 20:56:18 +0000 (-0800) Subject: Update version number to 1.2 X-Git-Tag: v1.2.0^0 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f5436204e62b1f7b2716a21e024ae2c572739cf2;p=thirdparty%2Ftornado.git Update version number to 1.2 --- diff --git a/setup.py b/setup.py index 38011a057..8e1550e8f 100644 --- a/setup.py +++ b/setup.py @@ -37,7 +37,7 @@ if "linux" in sys.platform.lower() and not python_26: extensions.append(distutils.core.Extension( "tornado.epoll", ["tornado/epoll.c"])) -version = "1.1.1" +version = "1.2" distutils.core.setup( name="tornado", diff --git a/tornado/__init__.py b/tornado/__init__.py index b5992116f..bfb96b086 100644 --- a/tornado/__init__.py +++ b/tornado/__init__.py @@ -16,5 +16,5 @@ """The Tornado web server and tools.""" -version = "1.1.1" -version_info = (1, 1, 1) +version = "1.2" +version_info = (1, 2, 0) diff --git a/website/templates/documentation.txt b/website/templates/documentation.txt index 129ce3488..ffea8e713 100644 --- a/website/templates/documentation.txt +++ b/website/templates/documentation.txt @@ -50,9 +50,9 @@ Download and install --------------------

Automatic installation: Tornado is listed in PyPI and can be installed with pip or easy_install. If you do not already have libcurl installed you may need to install it separately; see the prerequisites section below. Note that the source distribution includes demo applications that are not present when Tornado is installed using pip or easy_install

-

Manual installation: Download tornado-1.1.1.tar.gz

-
tar xvzf tornado-1.1.1.tar.gz
-cd tornado-1.1.1
+  

Manual installation: Download tornado-1.2.tar.gz

+
tar xvzf tornado-1.2.tar.gz
+cd tornado-1.2
 python setup.py build
 sudo python setup.py install

The Tornado source code is hosted on GitHub. On Python 2.6+, it is also possible to simply add the tornado directory to your PYTHONPATH instead of building with setup.py, since the standard library includes epoll support.

diff --git a/website/templates/index.html b/website/templates/index.html index ff003a489..a34a7e486 100644 --- a/website/templates/index.html +++ b/website/templates/index.html @@ -8,9 +8,9 @@

Download and install

Automatic installation: Tornado is listed in PyPI and can be installed with pip or easy_install. If you do not already have libcurl installed you may need to install it separately; see the prerequisites section below. Note that the source distribution includes demo applications that are not present when Tornado is installed using pip or easy_install

-

Manual installation: Download tornado-1.1.1.tar.gz

-
tar xvzf tornado-1.1.1.tar.gz
-cd tornado-1.1.1
+  

Manual installation: Download tornado-1.2.tar.gz

+
tar xvzf tornado-1.2.tar.gz
+cd tornado-1.2
 python setup.py build
 sudo python setup.py install

The Tornado source code is hosted on GitHub. On Python 2.6+, it is also possible to simply add the tornado directory to your PYTHONPATH instead of building with setup.py, since the standard library includes epoll support.