From b2468aec07d789f866c1fde6e74f39fb326ec84e Mon Sep 17 00:00:00 2001 From: Ben Darnell Date: Wed, 27 Dec 2017 13:06:11 -0500 Subject: [PATCH] setup: Set version number to 5.0a1 --- setup.py | 2 +- tornado/__init__.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 70cb00439..33e652280 100644 --- a/setup.py +++ b/setup.py @@ -104,7 +104,7 @@ http://api.mongodb.org/python/current/installation.html#osx kwargs = {} -version = "5.0.dev1" +version = "5.0a1" with open('README.rst') as f: kwargs['long_description'] = f.read() diff --git a/tornado/__init__.py b/tornado/__init__.py index 3c191c0dd..c55e9cb05 100644 --- a/tornado/__init__.py +++ b/tornado/__init__.py @@ -25,5 +25,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.dev1" -version_info = (5, 0, 0, -100) +version = "5.0a1" +version_info = (5, 0, 0, -99) -- 2.47.2