]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Version bump and release notes for 3.0.2. branch3.0 v3.0.2
authorBen Darnell <ben@bendarnell.com>
Sun, 2 Jun 2013 20:27:28 +0000 (16:27 -0400)
committerBen Darnell <ben@bendarnell.com>
Sun, 2 Jun 2013 20:27:28 +0000 (16:27 -0400)
docs/releases.rst
docs/releases/v3.0.2.rst [new file with mode: 0644]
setup.py
tornado/__init__.py

index bdce355e08965cfd922d31ce3e1514ed85b137ca..782c20afba161230057b064aad9272148173661d 100644 (file)
@@ -4,6 +4,7 @@ Release notes
 .. toctree::
    :maxdepth: 2
 
+   releases/v3.0.2
    releases/v3.0.1
    releases/v3.0.0
    releases/v2.4.1
diff --git a/docs/releases/v3.0.2.rst b/docs/releases/v3.0.2.rst
new file mode 100644 (file)
index 0000000..7eac09d
--- /dev/null
@@ -0,0 +1,12 @@
+What's new in Tornado 3.0.2
+===========================
+
+Jun 2, 2013
+-----------
+
+* `tornado.auth.TwitterMixin` now defaults to version 1.1 of the
+  Twitter API, instead of version 1.0 which is being `discontinued on
+  June 11 <https://dev.twitter.com/calendar>`_.  It also now uses HTTPS
+  when talking to Twitter.
+* Fixed a potential memory leak with a long chain of `.gen.coroutine`
+  or `.gen.engine` functions.
index 35d624469e6dc2430f448332990d23cd5bd56463..82e6b9c3633fa35300ed31b7da0f81dc9ac5aeb8 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -25,7 +25,7 @@ except ImportError:
 
 kwargs = {}
 
-version = "3.0.1"
+version = "3.0.2"
 
 with open('README.rst') as f:
     long_description = f.read()
index c188a1b5feb7de2e0d16b50e2aafe1eca62b2e1c..483eb128fb0e21054bd0bf1e54751968f5c37cac 100644 (file)
@@ -25,5 +25,5 @@ from __future__ import absolute_import, division, print_function, with_statement
 # is zero for an official release, positive for a development branch,
 # or negative for a release candidate or beta (after the base version
 # number has been incremented)
-version = "3.0.1"
-version_info = (3, 0, 1, 0)
+version = "3.0.2"
+version_info = (3, 0, 2, 0)