]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Bump version to 2.4.1, update release notes. v2.4.1
authorBen Darnell <ben@bendarnell.com>
Sun, 25 Nov 2012 02:22:10 +0000 (21:22 -0500)
committerBen Darnell <ben@bendarnell.com>
Sun, 25 Nov 2012 02:24:44 +0000 (21:24 -0500)
setup.py
tornado/__init__.py
website/sphinx/releases.rst
website/sphinx/releases/v2.4.1.rst [new file with mode: 0644]

index f851859751d4a055ce12654626af157a13ecb998..f3f903898676ec18a543fd98b446d5aa6fcfad7c 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -33,7 +33,7 @@ if "linux" in sys.platform.lower() and not python_26:
     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
index 943c34c39f42f15921ae72e214e16d3306840e26..0c9bb9b10909df865aced7191b370953ed8aa853 100644 (file)
@@ -25,5 +25,5 @@ from __future__ import absolute_import, division, with_statement
 # 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)
index e660829067b4587e32c85dd6b129258eb1a89900..182b4aa72b2263a0725d84396544c4a54454e9d4 100644 (file)
@@ -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
diff --git a/website/sphinx/releases/v2.4.1.rst b/website/sphinx/releases/v2.4.1.rst
new file mode 100644 (file)
index 0000000..32f9384
--- /dev/null
@@ -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.