From 9470c80afcd8f6f27d4a595907f004601517e8c8 Mon Sep 17 00:00:00 2001 From: Ben Darnell Date: Sun, 10 Jun 2018 23:25:13 -0400 Subject: [PATCH] Set version number to 5.1b1 --- setup.py | 2 +- tornado/__init__.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 6ba89eb41..6fbb10a89 100644 --- a/setup.py +++ b/setup.py @@ -103,7 +103,7 @@ MacOS users should run: kwargs = {} -version = "5.1.dev1" +version = "5.1b1" with open('README.rst') as f: kwargs['long_description'] = f.read() diff --git a/tornado/__init__.py b/tornado/__init__.py index 9a9d2202e..e8922f6f7 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.1.dev1" -version_info = (5, 1, 0, -100) +version = "5.1b1" +version_info = (5, 1, 0, -99) -- 2.47.2