Skip to content

Commit

Permalink
Merge pull request #2442 from bdarnell/finalize-5.1
Browse files Browse the repository at this point in the history
Set version number to 5.1
  • Loading branch information
bdarnell committed Jul 11, 2018
2 parents d5c4e89 + 0ff66e3 commit c890f84
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions docs/releases/v5.1.0.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
What's new in Tornado 5.1
=========================

In progress
-----------
July 12, 2018
-------------

Deprecation notice
~~~~~~~~~~~~~~~~~~
Expand Down
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.1b1"
version = "5.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.1b1"
version_info = (5, 1, 0, -99)
version = "5.1"
version_info = (5, 1, 0, 0)

0 comments on commit c890f84

Please sign in to comment.