Skip to content

Commit

Permalink
Set version number to 6.2.0
Browse files Browse the repository at this point in the history
Closes #3165
  • Loading branch information
bdarnell committed Jul 3, 2022
1 parent a5a6b03 commit ea479e2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions docs/releases/v6.2.0.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
What's new in Tornado 6.2.0
===========================

Jun XX, 2022
------------
Jul 3, 2022
-----------

Deprecation notice
~~~~~~~~~~~~~~~~~~
Expand Down Expand Up @@ -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`
~~~~~~~~~~~~~~~~~~
Expand Down
4 changes: 2 additions & 2 deletions tornado/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit ea479e2

Please sign in to comment.