Skip to content

Commit 169ac4e

Browse files
committed
Bump version to 2.4.1, update release notes.
1 parent 722731d commit 169ac4e

File tree

4 files changed

+19
-3
lines changed

4 files changed

+19
-3
lines changed

setup.py

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

36-
version = "2.4"
36+
version = "2.4.1"
3737

3838
if major >= 3:
3939
import setuptools # setuptools is required for use_2to3

tornado/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@
2525
# is zero for an official release, positive for a development branch,
2626
# or negative for a release candidate (after the base version number
2727
# has been incremented)
28-
version = "2.4"
29-
version_info = (2, 4, 0, 0)
28+
version = "2.4.1"
29+
version_info = (2, 4, 1, 0)

website/sphinx/releases.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Release notes
44
.. toctree::
55
:maxdepth: 2
66

7+
releases/v2.4.1
78
releases/v2.4.0
89
releases/v2.3.0
910
releases/v2.2.1

website/sphinx/releases/v2.4.1.rst

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
What's new in Tornado 2.4.1
2+
===========================
3+
4+
Nov 24, 2012
5+
------------
6+
7+
Bug fixes
8+
~~~~~~~~~
9+
10+
* Fixed a memory leak in `tornado.stack_context` that was especially likely
11+
with long-running ``@gen.engine`` functions.
12+
* `tornado.auth.TwitterMixin` now works on Python 3.
13+
* Fixed a bug in which `IOStream.read_until_close` with a streaming callback
14+
would sometimes pass the last chunk of data to the final callback instead
15+
of the streaming callback.

0 commit comments

Comments
 (0)