From 0ff66e343b660b5d3eafe611b74593e9f7082db7 Mon Sep 17 00:00:00 2001 From: Ben Darnell Date: Wed, 11 Jul 2018 09:14:00 -0400 Subject: [PATCH] Set version number to 5.1 --- docs/releases/v5.1.0.rst | 4 ++-- setup.py | 2 +- tornado/__init__.py | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/releases/v5.1.0.rst b/docs/releases/v5.1.0.rst index dc872e3bb..09c5d80e1 100644 --- a/docs/releases/v5.1.0.rst +++ b/docs/releases/v5.1.0.rst @@ -1,8 +1,8 @@ What's new in Tornado 5.1 ========================= -In progress ------------ +July 12, 2018 +------------- Deprecation notice ~~~~~~~~~~~~~~~~~~ diff --git a/setup.py b/setup.py index 0db840d99..ea1827f34 100644 --- a/setup.py +++ b/setup.py @@ -103,7 +103,7 @@ MacOS users should run: kwargs = {} -version = "5.1b1" +version = "5.1" with open('README.rst') as f: kwargs['long_description'] = f.read() diff --git a/tornado/__init__.py b/tornado/__init__.py index e8922f6f7..6bb5ec209 100644 --- a/tornado/__init__.py +++ b/tornado/__init__.py @@ -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.1b1" -version_info = (5, 1, 0, -99) +version = "5.1" +version_info = (5, 1, 0, 0) -- 2.47.2