Skip to content

Commit

Permalink
Set version to 6.0
Browse files Browse the repository at this point in the history
bdarnell committed Mar 1, 2019

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 4f1ebe4 commit 99ea6d2
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion docs/releases/v6.0.0.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
What's new in Tornado 6.0
=========================

In progress
Mar 1, 2019
-----------

Backwards-incompatible changes
@@ -16,6 +16,10 @@ Backwards-incompatible changes
application with the ``-Wd`` Python command-line flag or the
environment variable ``PYTHONWARNINGS=d`` should tell you whether
your application is ready to move to Tornado 6.0.
- ``.WebSocketHandler.get`` is now a coroutine and must be called
accordingly in any subclasses that override this method (but note
that overriding ``get`` is not recommended; either ``prepare`` or
``open`` should be used instead).

General changes
~~~~~~~~~~~~~~~
4 changes: 2 additions & 2 deletions tornado/__init__.py
Original file line number Diff line number Diff line change
@@ -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.0b1"
version_info = (6, 0, 0, -98)
version = "6.0"
version_info = (6, 0, 0, 0)

0 comments on commit 99ea6d2

Please sign in to comment.