]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Version number and release notes for 6.0.3 2685/head
authorBen Darnell <ben@bendarnell.com>
Sat, 22 Jun 2019 17:06:50 +0000 (13:06 -0400)
committerBen Darnell <ben@bendarnell.com>
Sat, 22 Jun 2019 22:19:07 +0000 (18:19 -0400)
docs/releases.rst
docs/releases/v6.0.3.rst [new file with mode: 0644]
tornado/__init__.py

index 1addf8c645181989c4fa800393473220a1ab1672..bb8a6f999e8de52ae7eab97f36ca36936edb6f9c 100644 (file)
@@ -4,6 +4,7 @@ Release notes
 .. toctree::
    :maxdepth: 2
 
+   releases/v6.0.3
    releases/v6.0.2
    releases/v6.0.1
    releases/v6.0.0
diff --git a/docs/releases/v6.0.3.rst b/docs/releases/v6.0.3.rst
new file mode 100644 (file)
index 0000000..c112a02
--- /dev/null
@@ -0,0 +1,14 @@
+What's new in Tornado 6.0.3
+===========================
+
+Jun 22, 2019
+------------
+
+Bug fixes
+~~~~~~~~~
+
+- `.gen.with_timeout` always treats ``asyncio.CancelledError`` as a
+  ``quiet_exception`` (this improves compatibility with Python 3.8,
+  which changed ``CancelledError`` to a ``BaseException``).
+- ``IOStream`` now checks for closed streams earlier, avoiding
+  spurious logged errors in some situations (mainly with websockets).
index bc5dbb918daf7032afe1e14b96f959dd9cfe6879..a1094a623c33b34e1f58e8f24ddb6bc1f5b620f6 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.0.2"
-version_info = (6, 0, 2, 0)
+version = "6.0.3"
+version_info = (6, 0, 3, 0)