From: Ben Darnell Date: Wed, 5 Jun 2013 13:21:52 +0000 (-0400) Subject: Set version number to 3.1b1 X-Git-Tag: v3.1.0~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b61bc5a79c6421a5dd36e7aeaae7c1f516c8c6c5;p=thirdparty%2Ftornado.git Set version number to 3.1b1 --- diff --git a/setup.py b/setup.py index 9902eeb87..f06d57703 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ except ImportError: kwargs = {} -version = "3.1.dev2" +version = "3.1b1" with open('README.rst') as f: long_description = f.read() diff --git a/tornado/__init__.py b/tornado/__init__.py index 68434e181..4a264c354 100644 --- a/tornado/__init__.py +++ b/tornado/__init__.py @@ -25,5 +25,5 @@ from __future__ import absolute_import, division, print_function, with_statement # 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 = "3.1.dev2" -version_info = (3, 1, 0, -99) +version = "3.1b1" +version_info = (3, 1, 0, -98)