Skip to content

Commit

Permalink
Merge pull request #2602 from bdarnell/version-6.0
Browse files Browse the repository at this point in the history
Set version to 6.0
  • Loading branch information
bdarnell authored Mar 1, 2019
2 parents 4f1ebe4 + 99ea6d2 commit 3c8728d
Show file tree
Hide file tree
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
Expand All @@ -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
~~~~~~~~~~~~~~~
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.0b1"
version_info = (6, 0, 0, -98)
version = "6.0"
version_info = (6, 0, 0, 0)

0 comments on commit 3c8728d

Please sign in to comment.