]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Set version to 6.2b2 3162/head
authorBen Darnell <ben@bendarnell.com>
Fri, 17 Jun 2022 20:30:35 +0000 (16:30 -0400)
committerBen Darnell <ben@bendarnell.com>
Fri, 17 Jun 2022 20:30:35 +0000 (16:30 -0400)
docs/releases/v6.2.0.rst
tornado/__init__.py

index e2d5175fc04c7c6bb209c1e82ef5d401bf78a032..a2277b9267103f22e12a3b8159d767b6ab84096b 100644 (file)
@@ -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`
 ~~~~~~~~~~~~~~~~~~
index ae15b21d7054773e82675c0282fb89f49a1c0ec6..43fe83cb3df23773be0b5b8b28ad5ee325d6e01d 100644 (file)
@@ -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)