Version bump and release notes for 3.0.2.

This commit is contained in:
Ben Darnell 2013-06-02 16:27:28 -04:00
parent 64d8b86d6b
commit 1a3088b58d
4 changed files with 16 additions and 3 deletions

View 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

12
docs/releases/v3.0.2.rst Normal file
View File

@ -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.

View File

@ -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()

View 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)