Skip to content

Commit f543620

Browse files
committed
Update version number to 1.2
1 parent 210c5c8 commit f543620

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
extensions.append(distutils.core.Extension(
3838
"tornado.epoll", ["tornado/epoll.c"]))
3939

40-
version = "1.1.1"
40+
version = "1.2"
4141

4242
distutils.core.setup(
4343
name="tornado",

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.1.1"
20-
version_info = (1, 1, 1)
19+
version = "1.2"
20+
version_info = (1, 2, 0)

website/templates/documentation.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ Download and install
5050
--------------------
5151
<p><b>Automatic installation:</b> Tornado is listed in <a href="http://pypi.python.org/pypi/tornado">PyPI</a> and can be installed with <code>pip</code> or <code>easy_install</code>. If you do not already have libcurl installed you may need to install it separately; see the prerequisites section below. Note that the source distribution includes demo applications that are not present when Tornado is installed using <code>pip</code> or <code>easy_install</code></p>
5252

53-
<p><b>Manual installation:</b> Download <a href="http://github.com/downloads/facebook/tornado/tornado-1.1.1.tar.gz">tornado-1.1.1.tar.gz</a></p>
54-
<pre><code>tar xvzf tornado-1.1.1.tar.gz
55-
cd tornado-1.1.1
53+
<p><b>Manual installation:</b> Download <a href="http://github.com/downloads/facebook/tornado/tornado-1.2.tar.gz">tornado-1.2.tar.gz</a></p>
54+
<pre><code>tar xvzf tornado-1.2.tar.gz
55+
cd tornado-1.2
5656
python setup.py build
5757
sudo python setup.py install</code></pre>
5858
<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>

website/templates/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
<h2>Download and install</h2>
99
<p><b>Automatic installation:</b> Tornado is listed in <a href="http://pypi.python.org/pypi/tornado">PyPI</a> and can be installed with <code>pip</code> or <code>easy_install</code>. If you do not already have libcurl installed you may need to install it separately; see the prerequisites section below. Note that the source distribution includes demo applications that are not present when Tornado is installed using <code>pip</code> or <code>easy_install</code></p>
1010

11-
<p><b>Manual installation:</b> Download <a href="http://github.com/downloads/facebook/tornado/tornado-1.1.1.tar.gz">tornado-1.1.1.tar.gz</a></p>
12-
<pre><code>tar xvzf tornado-1.1.1.tar.gz
13-
cd tornado-1.1.1
11+
<p><b>Manual installation:</b> Download <a href="http://github.com/downloads/facebook/tornado/tornado-1.2.tar.gz">tornado-1.2.tar.gz</a></p>
12+
<pre><code>tar xvzf tornado-1.2.tar.gz
13+
cd tornado-1.2
1414
python setup.py build
1515
sudo python setup.py install</code></pre>
1616
<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)