From 84d45fcc519d4255a7e5e08c1a740e58a9f46b12 Mon Sep 17 00:00:00 2001 From: Ben Darnell Date: Fri, 17 Jun 2022 16:30:35 -0400 Subject: [PATCH] Set version to 6.2b2 --- docs/releases/v6.2.0.rst | 9 +++++++-- tornado/__init__.py | 4 ++-- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/docs/releases/v6.2.0.rst b/docs/releases/v6.2.0.rst index e2d5175fc..a2277b926 100644 --- a/docs/releases/v6.2.0.rst +++ b/docs/releases/v6.2.0.rst @@ -17,8 +17,9 @@ Deprecation notice pattern is to start the event loop with `asyncio.run`. More detailed migration guides will be coming in the future. - - The `.IOLoop` constructor is deprecated. Use `.IOLoop.current` when the loop - is already running instead. + - The `.IOLoop` constructor is deprecated unless the ``make_current=False`` + argument is used. Use `.IOLoop.current` when the loop is already running + instead. - `.AsyncTestCase` (and `.AsyncHTTPTestCase`) are deprecated. Use `unittest.IsolatedAsyncioTestCase` instead. - Multi-process `.TCPServer.bind`/`.TCPServer.start` is deprecated. See @@ -37,6 +38,8 @@ General changes ~~~~~~~~~~~~~~~ - The minimum supported Python version is now 3.7. +- Wheels are now published with the Python stable ABI (``abi3``) for + compatibility across versions of Python. - SSL certificate verfication and hostname checks are now enabled by default in more places (primarily in client-side usage of `.SSLIOStream`). - Various improvements to type hints throughout the package. @@ -70,6 +73,8 @@ General changes - Avoid logging "Event loop is closed" during shutdown-related race conditions. - Tornado no longer calls `logging.basicConfig` when starting an IOLoop; this has been unnecessary since Python 3.2 added a logger of last resort. +- The `.IOLoop` constructor now accepts an ``asyncio_loop`` keyword argument to + initialize with a specfied asyncio event loop. `tornado.iostream` ~~~~~~~~~~~~~~~~~~ diff --git a/tornado/__init__.py b/tornado/__init__.py index ae15b21d7..43fe83cb3 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.2b1" -version_info = (6, 2, 0, -99) +version = "6.2b2" +version_info = (6, 2, 0, -98) -- 2.47.2