]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Set version to 5.0.1 2315/head
authorBen Darnell <ben@bendarnell.com>
Sun, 18 Mar 2018 15:17:16 +0000 (11:17 -0400)
committerBen Darnell <ben@bendarnell.com>
Sun, 18 Mar 2018 15:17:16 +0000 (11:17 -0400)
docs/releases.rst
docs/releases/v5.0.1.rst [new file with mode: 0644]
setup.py
tornado/__init__.py

index 1e7c4ddc368baeb38bbffa0214ce1accef910f1f..74afb4552d09023d060c29f38f1f0c4ce2e33d1e 100644 (file)
@@ -4,6 +4,7 @@ Release notes
 .. toctree::
    :maxdepth: 2
 
+   releases/v5.0.1
    releases/v5.0.0
    releases/v4.5.3
    releases/v4.5.2
diff --git a/docs/releases/v5.0.1.rst b/docs/releases/v5.0.1.rst
new file mode 100644 (file)
index 0000000..d3a006c
--- /dev/null
@@ -0,0 +1,12 @@
+What's new in Tornado 5.0.1
+===========================
+
+Mar 18, 2018
+------------
+
+Bug fix
+~~~~~~~
+
+- This release restores support for versions of Python 3.4 prior to
+  3.4.4. This is important for compatibility with Debian Jessie which
+  has 3.4.2 as its version of Python 3.
index b9a0b71dd85d2ada5caafb25f60577e35441577a..239d47c556f2d40b01849ec6db42398edaf00bf5 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -103,7 +103,7 @@ http://api.mongodb.org/python/current/installation.html#osx
 
 kwargs = {}
 
-version = "5.0"
+version = "5.0.1"
 
 with open('README.rst') as f:
     kwargs['long_description'] = f.read()
index 73e99155187a4cee7c9e49ecd5d392cc803afb4f..d577e8f2ab2de9b0c29e31369fff62ff74dcac7f 100644 (file)
@@ -24,5 +24,5 @@ from __future__ import absolute_import, division, print_function
 # 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 = "5.0"
-version_info = (5, 0, 0, 0)
+version = "5.0.1"
+version_info = (5, 0, 1, 0)