From 61e6c64bb78a93b1ba59ce6a993294ad3552fbf2 Mon Sep 17 00:00:00 2001 From: Ben Darnell Date: Sat, 24 Oct 2020 15:51:30 -0400 Subject: [PATCH] Bump version to 6.1b2 --- docs/releases/v6.1.0.rst | 6 ++++++ tornado/__init__.py | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) 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) -- 2.47.2