From: Ben Darnell Date: Fri, 1 Mar 2019 14:55:59 +0000 (-0500) Subject: Set version to 6.0 X-Git-Tag: v6.0.0^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F2602%2Fhead;p=thirdparty%2Ftornado.git Set version to 6.0 --- diff --git a/docs/releases/v6.0.0.rst b/docs/releases/v6.0.0.rst index 1a55133f0..d3d2dfbc0 100644 --- a/docs/releases/v6.0.0.rst +++ b/docs/releases/v6.0.0.rst @@ -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 ~~~~~~~~~~~~~~~ diff --git a/tornado/__init__.py b/tornado/__init__.py index 495eeea5e..54fa89e87 100644 --- a/tornado/__init__.py +++ b/tornado/__init__.py @@ -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)