Skip to content

Commit

Permalink
Set version number to 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Darnell committed Jul 22, 2010
1 parent d90ba2e commit eb5b3d8
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

distutils.core.setup(
name="tornado",
version="0.2",
version="1.0",
packages = ["tornado"],
ext_modules = extensions,
author="Facebook",
Expand Down
2 changes: 1 addition & 1 deletion tornado/web.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def on_connection_close(self):
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():
Expand Down
6 changes: 3 additions & 3 deletions website/templates/documentation.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
6 changes: 3 additions & 3 deletions website/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit eb5b3d8

Please sign in to comment.