diff options
author | Christian Wyglendowski <none@none> | 2006-09-27 20:06:13 +0000 |
---|---|---|
committer | Christian Wyglendowski <none@none> | 2006-09-27 20:06:13 +0000 |
commit | ad5fbb041723c2f03135552e917eca1b813b6ac5 (patch) | |
tree | 29ce5bafeb40352614af1cf4ff24373d8908692f | |
parent | 8d25296f799d1654f6a837cc3b8a48ed9031bd78 (diff) | |
download | cherrypy-git-cherrypy-3.0.0beta2.tar.gz |
Version number changes in preparation for the CP 3.0.0beta2 release.cherrypy-3.0.0beta2
-rw-r--r-- | cherrypy/__init__.py | 2 | ||||
-rw-r--r-- | cherrypy/_cpwsgiserver.py | 2 | ||||
-rw-r--r-- | setup.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/cherrypy/__init__.py b/cherrypy/__init__.py index 3913be3f..f5d3fbac 100644 --- a/cherrypy/__init__.py +++ b/cherrypy/__init__.py @@ -1,6 +1,6 @@ """Global module that all modules developing with CherryPy should import.""" -__version__ = '3.0.0beta' +__version__ = '3.0.0beta2' import os as _os _localdir = _os.path.dirname(__file__) diff --git a/cherrypy/_cpwsgiserver.py b/cherrypy/_cpwsgiserver.py index 79f63767..7f7cf294 100644 --- a/cherrypy/_cpwsgiserver.py +++ b/cherrypy/_cpwsgiserver.py @@ -542,7 +542,7 @@ class CherryPyWSGIServer(object): """ protocol = "HTTP/1.1" - version = "CherryPy/3.0.0beta" + version = "CherryPy/3.0.0beta2" ready = False _interrupt = None ConnectionClass = HTTPConnection @@ -18,7 +18,7 @@ required_python_version = '2.3' # arguments for the setup command ############################################################################### name = "CherryPy" -version = "3.0.0beta" +version = "3.0.0beta2" desc = "Object-Oriented HTTP framework" long_desc = "CherryPy is a pythonic, object-oriented HTTP framework" classifiers=[ |