Skip to content

Commit 2338348

Browse files
committed
Bump version number to 1.1
1 parent afb82f6 commit 2338348

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
distutils.core.setup(
3535
name="tornado",
36-
version="1.0",
36+
version="1.1",
3737
packages = ["tornado"],
3838
ext_modules = extensions,
3939
author="Facebook",

tornado/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@
1616

1717
"""The Tornado web server and tools."""
1818

19-
version = "1.0.1"
20-
version_info = (1, 0, 1)
19+
version = "1.1"
20+
version_info = (1, 1, 0)

website/templates/documentation.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,12 @@ Download
5252
--------
5353
Download the most recent version of Tornado from GitHub:
5454

55-
> [tornado-1.0.1.tar.gz](http://github.com/downloads/facebook/tornado/tornado-1.0.1.tar.gz)
55+
> [tornado-1.1.tar.gz](http://github.com/downloads/facebook/tornado/tornado-1.1.tar.gz)
5656

5757
You can also [browse the source](http://github.com/facebook/tornado) on GitHub. To install Tornado:
5858

59-
tar xvzf tornado-1.0.1.tar.gz
60-
cd tornado-1.0.1
59+
tar xvzf tornado-1.1.tar.gz
60+
cd tornado-1.1
6161
python setup.py build
6262
sudo python setup.py install
6363

website/templates/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
<p>See the <a href="/documentation">Tornado documentation</a> for a detailed walkthrough of the framework.</p>
77

88
<h2>Download and install</h2>
9-
<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>
10-
<pre><code>tar xvzf tornado-1.0.1.tar.gz
11-
cd tornado-1.0.1
9+
<p><b>Download:</b> <a href="http://github.com/downloads/facebook/tornado/tornado-1.1.tar.gz">tornado-1.1.tar.gz</a></p>
10+
<pre><code>tar xvzf tornado-1.1.tar.gz
11+
cd tornado-1.1
1212
python setup.py build
1313
sudo python setup.py install</code></pre>
1414
<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>

0 commit comments

Comments
 (0)