]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Add release notes for 4.0.1 and update version number.
authorBen Darnell <ben@bendarnell.com>
Sun, 10 Aug 2014 19:19:48 +0000 (15:19 -0400)
committerBen Darnell <ben@bendarnell.com>
Sun, 10 Aug 2014 19:21:49 +0000 (15:21 -0400)
docs/releases.rst
docs/releases/v4.0.1.rst [new file with mode: 0644]
setup.py
tornado/__init__.py

index edb4223adea49861ff05bf2c6ded5169452eef80..d239c3ecc7ea9780844acd9f236c85710fcae882 100644 (file)
@@ -4,6 +4,7 @@ Release notes
 .. toctree::
    :maxdepth: 2
 
+   releases/v4.0.1
    releases/v4.0.0
    releases/v3.2.2
    releases/v3.2.1
diff --git a/docs/releases/v4.0.1.rst b/docs/releases/v4.0.1.rst
new file mode 100644 (file)
index 0000000..4221e32
--- /dev/null
@@ -0,0 +1,20 @@
+What's new in Tornado 4.0.1
+===========================
+
+In progress
+-----------
+
+* The build will now fall back to pure-python mode if the C extension
+  fails to build for any reason (previously it would fall back for some
+  errors but not others).
+* `.IOLoop.call_at` and `.IOLoop.call_later` now always return
+  a timeout handle for use with `.IOLoop.remove_timeout`.
+* If any callback of a `.PeriodicCallback` or `.IOStream` returns a
+  `.Future`, any error raised in that future will now be logged
+  (similar to the behavior of `.IOLoop.add_callback`).
+* Fixed an exception in client-side websocket connections when the
+  connection is closed.
+* ``simple_httpclient`` once again correctly handles 204 status
+  codes with no content-length header.
+* Fixed a regression in ``simple_httpclient`` that would result in
+  timeouts for certain kinds of errors.
index 5a464e50a3c277ecf94842a2066b240c38360afc..362bfc0385876c5e69076583866d0fc5c5b14e7c 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -98,7 +98,7 @@ http://api.mongodb.org/python/current/installation.html#osx
 
 kwargs = {}
 
-version = "4.0"
+version = "4.0.1b1"
 
 with open('README.rst') as f:
     kwargs['long_description'] = f.read()
index fe85e222469ebc946eeb1ba22c0a1999c98fc489..614146626c169253c240169fd5dcfa04d0c37b97 100644 (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 = "4.0"
-version_info = (4, 0, 0, 0)
+version = "4.0.1b1"
+version_info = (4, 0, 1, -100)