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.