From 99ea6d2cc908d69839270d2b8b65887945803b8b Mon Sep 17 00:00:00 2001 From: Ben Darnell Date: Fri, 1 Mar 2019 09:55:59 -0500 Subject: [PATCH] Set version to 6.0 --- docs/releases/v6.0.0.rst | 6 +++++- tornado/__init__.py | 4 ++-- 2 files changed, 7 insertions(+), 3 deletions(-) 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) -- 2.47.2