From f36fb66f02509b93a7156cd357e82d03155936a9 Mon Sep 17 00:00:00 2001 From: Ben Darnell Date: Thu, 3 Mar 2011 12:41:26 -0800 Subject: [PATCH] Set version number to 1.2.1 --- setup.py | 2 +- tornado/__init__.py | 4 ++-- website/templates/documentation.txt | 6 +++--- website/templates/index.html | 6 +++--- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/setup.py b/setup.py index 1fdb75cd..353788b8 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ if "linux" in sys.platform.lower() and not python_26: extensions.append(distutils.core.Extension( "tornado.epoll", ["tornado/epoll.c"])) -version = "1.2" +version = "1.2.1" distutils.core.setup( name="tornado", diff --git a/tornado/__init__.py b/tornado/__init__.py index bfb96b08..519285ef 100644 --- a/tornado/__init__.py +++ b/tornado/__init__.py @@ -16,5 +16,5 @@ """The Tornado web server and tools.""" -version = "1.2" -version_info = (1, 2, 0) +version = "1.2.1" +version_info = (1, 2, 1) diff --git a/website/templates/documentation.txt b/website/templates/documentation.txt index ffea8e71..b04ed8ad 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.2.tar.gz

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

Manual installation: Download tornado-1.2.1.tar.gz

+
tar xvzf tornado-1.2.1.tar.gz
+cd tornado-1.2.1
 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 a34a7e48..1b0cf14d 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.2.tar.gz

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

Manual installation: Download tornado-1.2.1.tar.gz

+
tar xvzf tornado-1.2.1.tar.gz
+cd tornado-1.2.1
 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.

-- GitLab