Skip to content

Commit

Permalink
Remove now-redundant entries from next.rst, bump version to 2.4.post2.
Browse files Browse the repository at this point in the history
  • Loading branch information
bdarnell committed Nov 25, 2012
1 parent 307c523 commit 6683077
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 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.post1"
version = "2.4.post2"

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.post1"
version_info = (2, 4, 0, 1)
version = "2.4.post2"
version_info = (2, 4, 0, 2)
4 changes: 0 additions & 4 deletions website/sphinx/releases/next.rst
Original file line number Diff line number Diff line change
Expand Up @@ -156,13 +156,9 @@ In progress
response code the same as a 303. This is contrary to the HTTP spec
but consistent with all browsers and other major HTTP clients
(including `CurlAsyncHTTPClient`).
* Fixed a bug with `IOStream.read_until_close` with a ``streaming_callback``,
which would cause some data to be passed to the final callback instead
of the streaming callback.
* The `tornado.auth` mixin classes now define a method
``get_auth_http_client``, which can be overridden to use a non-default
`AsyncHTTPClient` instance (e.g. to use a different `IOLoop`)
* `tornado.auth.TwitterMixin` now works on Python 3.
* ``Etag``/``If-None-Match`` requests now work with `StaticFileHandler`.
* `StaticFileHandler` no longer sets ``Cache-Control: public`` unnecessarily.
* The behavior of ``header_callback`` with `SimpleAsyncHTTPClient` has
Expand Down

0 comments on commit 6683077

Please sign in to comment.