]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Set version number to 6.2.0 3167/head
authorBen Darnell <ben@bendarnell.com>
Sun, 3 Jul 2022 22:03:24 +0000 (18:03 -0400)
committerBen Darnell <ben@bendarnell.com>
Sun, 3 Jul 2022 22:03:24 +0000 (18:03 -0400)
Closes #3165

docs/releases/v6.2.0.rst
tornado/__init__.py

index a2277b9267103f22e12a3b8159d767b6ab84096b..57b76ecb14e133af41e722a57393d22661c5e3fb 100644 (file)
@@ -1,8 +1,8 @@
 What's new in Tornado 6.2.0
 ===========================
 
-Jun XX, 2022
-------------
+Jul 3, 2022
+-----------
 
 Deprecation notice
 ~~~~~~~~~~~~~~~~~~
@@ -75,6 +75,8 @@ General changes
   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.
+- It is now possible to construct an `.IOLoop` on one thread (with
+  ``make_current=False``) and start it on a different thread.
 
 `tornado.iostream`
 ~~~~~~~~~~~~~~~~~~
index 43fe83cb3df23773be0b5b8b28ad5ee325d6e01d..39d7c44bf44a4c8276597cf5e2f3e370436eb4d8 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.2b2"
-version_info = (6, 2, 0, -98)
+version = "6.2"
+version_info = (6, 2, 0, 0)