Skip to content

Commit

Permalink
Tag release 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bdarnell committed Feb 9, 2011
1 parent 90b8078 commit b912454
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 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="1.1",
version="1.1.1",
packages = ["tornado"],
ext_modules = extensions,
author="Facebook",
Expand Down
4 changes: 2 additions & 2 deletions tornado/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
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-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

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-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>
Expand Down

0 comments on commit b912454

Please sign in to comment.