From: Ben Darnell Date: Tue, 3 Mar 2020 21:46:32 +0000 (-0500) Subject: Version bump and release notes for version 6.0.4 X-Git-Tag: v6.0.4^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=802f97e343781c008627589b966d2e74801bd3a0;p=thirdparty%2Ftornado.git Version bump and release notes for version 6.0.4 --- diff --git a/docs/releases.rst b/docs/releases.rst index bb8a6f999..81babaa3e 100644 --- a/docs/releases.rst +++ b/docs/releases.rst @@ -4,6 +4,7 @@ Release notes .. toctree:: :maxdepth: 2 + releases/v6.0.4 releases/v6.0.3 releases/v6.0.2 releases/v6.0.1 diff --git a/docs/releases/v6.0.4.rst b/docs/releases/v6.0.4.rst new file mode 100644 index 000000000..f9864bff4 --- /dev/null +++ b/docs/releases/v6.0.4.rst @@ -0,0 +1,21 @@ +What's new in Tornado 6.0.4 +=========================== + +Mar 3, 2020 +----------- + +General changes +~~~~~~~~~~~~~~~ + +- Binary wheels are now available for Python 3.8 on Windows. Note that it is + still necessary to use + ``asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy())`` for + this platform/version. + +Bug fixes +~~~~~~~~~ + +- Fixed an issue in `.IOStream` (introduced in 6.0.0) that resulted in + ``StreamClosedError`` being incorrectly raised if a stream is closed mid-read + but there is enough buffered data to satisfy the read. +- `.AnyThreadEventLoopPolicy` now always uses the selector event loop on Windows. \ No newline at end of file diff --git a/tornado/__init__.py b/tornado/__init__.py index a1094a623..8fb846f38 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.3" -version_info = (6, 0, 3, 0) +version = "6.0.4" +version_info = (6, 0, 4, 0)