]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Tag release 1.1.1 v1.1.1
authorBen Darnell <ben@bendarnell.com>
Wed, 9 Feb 2011 06:43:07 +0000 (22:43 -0800)
committerBen Darnell <ben@bendarnell.com>
Wed, 9 Feb 2011 06:43:07 +0000 (22:43 -0800)
setup.py
tornado/__init__.py
website/templates/documentation.txt
website/templates/index.html

index 265d46c199db2e8f09c27beeb5abcef47f96c1bb..59e4690234266f7f1358b5ced822ed4b69ed46f1 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.1",
+    version="1.1.1",
     packages = ["tornado"],
     ext_modules = extensions,
     author="Facebook",
index 1fbc1809b522a1b56f28a2524cea34c43e876597..b5992116f5e296afde9665960140cc3f9f95dd21 100644 (file)
@@ -16,5 +16,5 @@
 
 """The Tornado web server and tools."""
 
-version = "1.1"
-version_info = (1, 1, 0)
+version = "1.1.1"
+version_info = (1, 1, 1)
index 2023ae7746222613847c2313976ccd1a192cd10b..cc3713db646e06619a73f952479ccc9ea82f4922 100644 (file)
@@ -52,12 +52,12 @@ Download
 --------
 Download the most recent version of Tornado from GitHub:
 
-> [tornado-1.1.tar.gz](http://github.com/downloads/facebook/tornado/tornado-1.1.tar.gz)
+> [tornado-1.1.1.tar.gz](http://github.com/downloads/facebook/tornado/tornado-1.1.1.tar.gz)
 
 You can also [browse the source](http://github.com/facebook/tornado) on GitHub. To install Tornado:
 
-    tar xvzf tornado-1.1.tar.gz
-    cd tornado-1.1
+    tar xvzf tornado-1.1.1.tar.gz
+    cd tornado-1.1.1
     python setup.py build
     sudo python setup.py install
 
index 7d45cb12be587ff4c9529693f106daf73efea4f0..1e469b1c98de9149f6ca6664690e63a13fa561ce 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.1.tar.gz">tornado-1.1.tar.gz</a></p>
-  <pre><code>tar xvzf tornado-1.1.tar.gz
-cd tornado-1.1
+  <p><b>Download:</b> <a href="http://github.com/downloads/facebook/tornado/tornado-1.1.1.tar.gz">tornado-1.1.1.tar.gz</a></p>
+  <pre><code>tar xvzf tornado-1.1.1.tar.gz
+cd tornado-1.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>