]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Set version to 6.0b1 2588/head
authorBen Darnell <ben@bendarnell.com>
Sun, 10 Feb 2019 22:30:08 +0000 (17:30 -0500)
committerBen Darnell <ben@bendarnell.com>
Sun, 10 Feb 2019 22:30:08 +0000 (17:30 -0500)
docs/releases/v6.0.0.rst
tornado/__init__.py

index 6b1c66416b90da8e24fc4fae407aee46ff80022d..1a55133f0644254f7d247197ba19722342cd450d 100644 (file)
@@ -61,6 +61,8 @@ General changes
 
 - ``HTTPServerRequest.write`` has been removed. Use the methods of
   ``request.connection`` instead.
+- Unrecognized ``Content-Encoding`` values now log warnings only for
+  content types that we would otherwise attempt to parse.
 
 `tornado.ioloop`
 ~~~~~~~~~~~~~~~~
@@ -147,6 +149,8 @@ General changes
 
 - Pings and other messages sent while the connection is closing are
   now silently dropped instead of logging exceptions.
+- Errors raised by ``open()`` are now caught correctly when this method
+  is a coroutine.
 
 `tornado.wsgi`
 ~~~~~~~~~~~~~~
index 16db243d2a0fd49988d4e8c87f5a2bee7aaf996e..495eeea5e73de5ba870eaa448ed544ed9b66eab9 100644 (file)
@@ -22,5 +22,5 @@
 # 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 = "6.0a1"
-version_info = (6, 0, 0, -99)
+version = "6.0b1"
+version_info = (6, 0, 0, -98)