From: Ben Darnell Date: Sun, 10 Feb 2019 22:30:08 +0000 (-0500) Subject: Set version to 6.0b1 X-Git-Tag: v6.0.0b1^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F2588%2Fhead;p=thirdparty%2Ftornado.git Set version to 6.0b1 --- diff --git a/docs/releases/v6.0.0.rst b/docs/releases/v6.0.0.rst index 6b1c66416..1a55133f0 100644 --- a/docs/releases/v6.0.0.rst +++ b/docs/releases/v6.0.0.rst @@ -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` ~~~~~~~~~~~~~~ diff --git a/tornado/__init__.py b/tornado/__init__.py index 16db243d2..495eeea5e 100644 --- a/tornado/__init__.py +++ b/tornado/__init__.py @@ -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)