From: Ben Darnell Date: Sat, 22 Jun 2019 17:06:50 +0000 (-0400) Subject: Version number and release notes for 6.0.3 X-Git-Tag: v6.0.3^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c1f8d0a89377e611cbbee72e867f920687cf4123;p=thirdparty%2Ftornado.git Version number and release notes for 6.0.3 --- diff --git a/docs/releases.rst b/docs/releases.rst index 1addf8c64..bb8a6f999 100644 --- a/docs/releases.rst +++ b/docs/releases.rst @@ -4,6 +4,7 @@ Release notes .. toctree:: :maxdepth: 2 + releases/v6.0.3 releases/v6.0.2 releases/v6.0.1 releases/v6.0.0 diff --git a/docs/releases/v6.0.3.rst b/docs/releases/v6.0.3.rst new file mode 100644 index 000000000..c112a0286 --- /dev/null +++ b/docs/releases/v6.0.3.rst @@ -0,0 +1,14 @@ +What's new in Tornado 6.0.3 +=========================== + +Jun 22, 2019 +------------ + +Bug fixes +~~~~~~~~~ + +- `.gen.with_timeout` always treats ``asyncio.CancelledError`` as a + ``quiet_exception`` (this improves compatibility with Python 3.8, + which changed ``CancelledError`` to a ``BaseException``). +- ``IOStream`` now checks for closed streams earlier, avoiding + spurious logged errors in some situations (mainly with websockets). diff --git a/tornado/__init__.py b/tornado/__init__.py index bc5dbb918..a1094a623 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.0.2" -version_info = (6, 0, 2, 0) +version = "6.0.3" +version_info = (6, 0, 3, 0)