From: Ben Darnell Date: Fri, 17 Jun 2022 20:30:35 +0000 (-0400) Subject: Set version to 6.2b2 X-Git-Tag: v6.2.0b2^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F3162%2Fhead;p=thirdparty%2Ftornado.git Set version to 6.2b2 --- 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)