Set version to 5.0.1

This commit is contained in:
Ben Darnell 2018-03-18 11:17:16 -04:00
parent 2bdc3cb9e2
commit f7967d4ba4
4 changed files with 16 additions and 3 deletions

View 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

12
docs/releases/v5.0.1.rst Normal file
View File

@ -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.

View File

@ -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()

View 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)