Skip to content

Commit

Permalink
Merge pull request #2315 from bdarnell/release-501
Browse files Browse the repository at this point in the history
Set version to 5.0.1
  • Loading branch information
bdarnell committed Mar 18, 2018
2 parents 2bdc3cb + f7967d4 commit b758925
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 3 deletions.
1 change: 1 addition & 0 deletions docs/releases.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
12 changes: 12 additions & 0 deletions docs/releases/v5.0.1.rst
Original file line number Diff line number Diff line change
@@ -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.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def build_extension(self, ext):

kwargs = {}

version = "5.0"
version = "5.0.1"

with open('README.rst') as f:
kwargs['long_description'] = f.read()
Expand Down
4 changes: 2 additions & 2 deletions tornado/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,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 = "5.0"
version_info = (5, 0, 0, 0)
version = "5.0.1"
version_info = (5, 0, 1, 0)

0 comments on commit b758925

Please sign in to comment.