]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Bump version number to 1.1 v1.1.0
authorBen Darnell <ben@bendarnell.com>
Wed, 8 Sep 2010 00:05:12 +0000 (17:05 -0700)
committerBen Darnell <ben@bendarnell.com>
Wed, 8 Sep 2010 00:05:12 +0000 (17:05 -0700)
setup.py
tornado/__init__.py
website/templates/documentation.txt
website/templates/index.html

index 714bb498ea9d9eb25c72211e89919bad3737a9eb..265d46c199db2e8f09c27beeb5abcef47f96c1bb 100644 (file)
--- 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",
index 0f471534eef0e38f7d321fd5c096313d236b2d48..1fbc1809b522a1b56f28a2524cea34c43e876597 100644 (file)
@@ -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)
index 357c63bcdf6b9dda2e1d982cd1c35348c34af0d2..2023ae7746222613847c2313976ccd1a192cd10b 100644 (file)
@@ -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
 
index 698a588b9c0c5c84e4069be465b4adda15b915b3..7d45cb12be587ff4c9529693f106daf73efea4f0 100644 (file)
@@ -6,9 +6,9 @@
   <p>See the <a href="/documentation">Tornado documentation</a> for a detailed walkthrough of the framework.</p>
 
   <h2>Download and install</h2>
-  <p><b>Download:</b> <a href="http://github.com/downloads/facebook/tornado/tornado-1.0.1.tar.gz">tornado-1.0.1.tar.gz</a></p>
-  <pre><code>tar xvzf tornado-1.0.1.tar.gz
-cd tornado-1.0.1
+  <p><b>Download:</b> <a href="http://github.com/downloads/facebook/tornado/tornado-1.1.tar.gz">tornado-1.1.tar.gz</a></p>
+  <pre><code>tar xvzf tornado-1.1.tar.gz
+cd tornado-1.1
 python setup.py build
 sudo python setup.py install</code></pre>
   <p>The Tornado source code is <a href="http://github.com/facebook/tornado">hosted on GitHub</a>.  On Python 2.6+, it is also possible to simply add the tornado directory to your <code>PYTHONPATH</code> instead of building with <code>setup.py</code>, since the standard library includes <code>epoll</code> support.</p>