From 7457d6f58387a801fa2c648daa341e7043734219 Mon Sep 17 00:00:00 2001 From: Ben Darnell Date: Sun, 10 Feb 2019 17:30:08 -0500 Subject: [PATCH] Set version to 6.0b1 --- docs/releases/v6.0.0.rst | 4 ++++ tornado/__init__.py | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) 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) -- 2.47.2