From: Ben Darnell Date: Wed, 8 Sep 2010 00:05:12 +0000 (-0700) Subject: Bump version number to 1.1 X-Git-Tag: v1.1.0^0 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2338348edda61c663fff8a7f6f77cf489bf63de6;p=thirdparty%2Ftornado.git Bump version number to 1.1 --- diff --git a/setup.py b/setup.py index 714bb498e..265d46c19 100644 --- a/setup.py +++ b/setup.py @@ -33,7 +33,7 @@ if "linux" in sys.platform.lower() and not python_26: distutils.core.setup( name="tornado", - version="1.0", + version="1.1", packages = ["tornado"], ext_modules = extensions, author="Facebook", diff --git a/tornado/__init__.py b/tornado/__init__.py index 0f471534e..1fbc1809b 100644 --- a/tornado/__init__.py +++ b/tornado/__init__.py @@ -16,5 +16,5 @@ """The Tornado web server and tools.""" -version = "1.0.1" -version_info = (1, 0, 1) +version = "1.1" +version_info = (1, 1, 0) diff --git a/website/templates/documentation.txt b/website/templates/documentation.txt index 357c63bcd..2023ae774 100644 --- a/website/templates/documentation.txt +++ b/website/templates/documentation.txt @@ -52,12 +52,12 @@ Download -------- Download the most recent version of Tornado from GitHub: -> [tornado-1.0.1.tar.gz](http://github.com/downloads/facebook/tornado/tornado-1.0.1.tar.gz) +> [tornado-1.1.tar.gz](http://github.com/downloads/facebook/tornado/tornado-1.1.tar.gz) You can also [browse the source](http://github.com/facebook/tornado) on GitHub. To install Tornado: - tar xvzf tornado-1.0.1.tar.gz - cd tornado-1.0.1 + tar xvzf tornado-1.1.tar.gz + cd tornado-1.1 python setup.py build sudo python setup.py install diff --git a/website/templates/index.html b/website/templates/index.html index 698a588b9..7d45cb12b 100644 --- a/website/templates/index.html +++ b/website/templates/index.html @@ -6,9 +6,9 @@

See the Tornado documentation for a detailed walkthrough of the framework.

Download and install

-

Download: tornado-1.0.1.tar.gz

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

Download: tornado-1.1.tar.gz

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