]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Set version number to 1.0 v1.0.0
authorBen Darnell <bdarnell@beaker.local>
Thu, 22 Jul 2010 22:15:37 +0000 (15:15 -0700)
committerBen Darnell <bdarnell@beaker.local>
Thu, 22 Jul 2010 23:56:21 +0000 (16:56 -0700)
setup.py
tornado/web.py
website/templates/documentation.txt
website/templates/index.html

index 5cb69df2dafc8b8cd586e42b215ca19827d7a318..714bb498ea9d9eb25c72211e89919bad3737a9eb 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="0.2",
+    version="1.0",
     packages = ["tornado"],
     ext_modules = extensions,
     author="Facebook",
index 646fe067bbd9ed81da9cd22fc8870fbbad62c72b..f1e0871f9d42afcf98c654c0c2df5d404c298597 100644 (file)
@@ -140,7 +140,7 @@ class RequestHandler(object):
     def clear(self):
         """Resets all headers and content for this response."""
         self._headers = {
-            "Server": "TornadoServer/0.1",
+            "Server": "TornadoServer/1.0",
             "Content-Type": "text/html; charset=UTF-8",
         }
         if not self.request.supports_http_1_1():
index 838721ab1a5e654e6fc5bdbd59c779634cdb611a..90738bbe078b30f68af83176df8cf9272ecc8cf2 100644 (file)
@@ -52,12 +52,12 @@ Download
 --------
 Download the most recent version of Tornado from GitHub:
 
-> [tornado-0.2.tar.gz](http://github.com/downloads/facebook/tornado/tornado-0.2.tar.gz)
+> [tornado-1.0.tar.gz](http://github.com/downloads/facebook/tornado/tornado-1.0.tar.gz)
 
 You can also [browse the source](http://github.com/facebook/tornado) on GitHub. To install Tornado:
 
-    tar xvzf tornado-0.2.tar.gz
-    cd tornado-0.2
+    tar xvzf tornado-1.0.tar.gz
+    cd tornado-1.0
     python setup.py build
     sudo python setup.py install
 
index 0a7c42ee09737abe6e065d1a1d7892f2420f8e22..ed53486708e35939e187465cf121afa44a897814 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-0.2.tar.gz">tornado-0.2.tar.gz</a></p>
-  <pre><code>tar xvzf tornado-0.2.tar.gz
-cd tornado-0.2
+  <p><b>Download:</b> <a href="http://github.com/downloads/facebook/tornado/tornado-1.0.tar.gz">tornado-1.0.tar.gz</a></p>
+  <pre><code>tar xvzf tornado-1.0.tar.gz
+cd tornado-1.0
 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>