Skip to content

Commit

Permalink
Bump version to 2.4.1, update release notes.
Browse files Browse the repository at this point in the history
  • Loading branch information
bdarnell committed Nov 25, 2012
1 parent 722731d commit 169ac4e
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 3 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 @@
extensions.append(distutils.core.Extension(
"tornado.epoll", ["tornado/epoll.c"]))

version = "2.4"
version = "2.4.1"

if major >= 3:
import setuptools # setuptools is required for use_2to3
Expand Down
4 changes: 2 additions & 2 deletions tornado/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@
# is zero for an official release, positive for a development branch,
# or negative for a release candidate (after the base version number
# has been incremented)
version = "2.4"
version_info = (2, 4, 0, 0)
version = "2.4.1"
version_info = (2, 4, 1, 0)
1 change: 1 addition & 0 deletions website/sphinx/releases.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Release notes
.. toctree::
:maxdepth: 2

releases/v2.4.1
releases/v2.4.0
releases/v2.3.0
releases/v2.2.1
Expand Down
15 changes: 15 additions & 0 deletions website/sphinx/releases/v2.4.1.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
What's new in Tornado 2.4.1
===========================

Nov 24, 2012
------------

Bug fixes
~~~~~~~~~

* Fixed a memory leak in `tornado.stack_context` that was especially likely
with long-running ``@gen.engine`` functions.
* `tornado.auth.TwitterMixin` now works on Python 3.
* Fixed a bug in which `IOStream.read_until_close` with a streaming callback
would sometimes pass the last chunk of data to the final callback instead
of the streaming callback.

0 comments on commit 169ac4e

Please sign in to comment.