From: Ben Darnell Date: Sat, 16 Mar 2013 23:34:01 +0000 (-0400) Subject: Bump version number to 3.0b1 X-Git-Tag: v3.0.0~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=004bf1c321c4e402b01e00a2d55f3af08ec43bc8;p=thirdparty%2Ftornado.git Bump version number to 3.0b1 --- diff --git a/setup.py b/setup.py index ec092f141..245662f11 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ except ImportError: kwargs = {} -version = "2.4.post4" +version = "3.0b1" distutils.core.setup( name="tornado", diff --git a/tornado/__init__.py b/tornado/__init__.py index aeb45a665..0ee851040 100644 --- a/tornado/__init__.py +++ b/tornado/__init__.py @@ -23,7 +23,7 @@ from __future__ import absolute_import, division, print_function, with_statement # version_info is a four-tuple for programmatic comparison. The first # three numbers are the components of the version number. The fourth # is zero for an official release, positive for a development branch, -# or negative for a release candidate (after the base version number -# has been incremented) -version = "2.4.post4" -version_info = (2, 4, 0, 4) +# or negative for a release candidate or beta (after the base version +# number has been incremented) +version = "3.0b1" +version_info = (3, 0, 0, -10)