]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Set version to 6.0 2602/head
authorBen Darnell <ben@bendarnell.com>
Fri, 1 Mar 2019 14:55:59 +0000 (09:55 -0500)
committerBen Darnell <ben@bendarnell.com>
Fri, 1 Mar 2019 15:04:02 +0000 (10:04 -0500)
docs/releases/v6.0.0.rst
tornado/__init__.py

index 1a55133f0644254f7d247197ba19722342cd450d..d3d2dfbc0b2a5ce19d6b34ccd38d2ebb16566fec 100644 (file)
@@ -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
 ~~~~~~~~~~~~~~~
index 495eeea5e73de5ba870eaa448ed544ed9b66eab9..54fa89e878fcb8c49b3cba4f33d7fa1038ab975a 100644 (file)
@@ -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)