]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Bump version number to 3.0b1
authorBen Darnell <ben@bendarnell.com>
Sat, 16 Mar 2013 23:34:01 +0000 (19:34 -0400)
committerBen Darnell <ben@bendarnell.com>
Sat, 16 Mar 2013 23:34:01 +0000 (19:34 -0400)
setup.py
tornado/__init__.py

index ec092f14178ae9ed1f26276442b10f23db626dbb..245662f110c978bfa85878b19bfab717864aa9e2 100644 (file)
--- 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",
index aeb45a6656404ee15b8abf7bb15e0a1f043e5408..0ee8510407e4590f71e318683edee756236bb211 100644 (file)
@@ -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)