diff --git a/setup.py b/setup.py index 38011a05..8e1550e8 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 b5992116..bfb96b08 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 129ce348..ffea8e71 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 ff003a48..a34a7e48 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.