From: Ben Darnell Date: Sat, 24 Oct 2020 19:51:30 +0000 (-0400) Subject: Bump version to 6.1b2 X-Git-Tag: v6.1.0b2^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=61e6c64bb78a93b1ba59ce6a993294ad3552fbf2;p=thirdparty%2Ftornado.git Bump version to 6.1b2 --- diff --git a/docs/releases/v6.1.0.rst b/docs/releases/v6.1.0.rst index 0b7f5b23c..49426eab9 100644 --- a/docs/releases/v6.1.0.rst +++ b/docs/releases/v6.1.0.rst @@ -21,6 +21,12 @@ General changes less scalable on Windows than on other platforms. - Binary wheels are now provided for Windows, MacOS, and Linux (amd64 and arm64). +`tornado.gen` +~~~~~~~~~~~~~ + +- `.coroutine` now has better support for the Python 3.7+ ``contextvars`` module. + In particular, the ``ContextVar.reset`` method is now supported. + `tornado.http1connection` ~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/tornado/__init__.py b/tornado/__init__.py index ca162bff6..a458bbdd3 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.1b1" -version_info = (6, 1, 0, -99) +version = "6.1b2" +version_info = (6, 1, 0, -98)