From: Ben Darnell Date: Wed, 27 Dec 2017 18:06:11 +0000 (-0500) Subject: setup: Set version number to 5.0a1 X-Git-Tag: v5.0.0~27^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b2468aec07d789f866c1fde6e74f39fb326ec84e;p=thirdparty%2Ftornado.git setup: Set version number to 5.0a1 --- 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)