summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Brewer <fumanchu@aminus.org>2008-05-17 19:34:28 +0000
committerRobert Brewer <fumanchu@aminus.org>2008-05-17 19:34:28 +0000
commit78bd3642975f56cadab42161f8d064c73d7705d8 (patch)
treee1c3c5e88f2df74a0e3c5e0f80581027492e1cef
parentd01ffa7dc6b349f5bdd8cb939cb5a672d957fbb1 (diff)
downloadcherrypy-78bd3642975f56cadab42161f8d064c73d7705d8.tar.gz
Updating version to 3.1rc1.
-rw-r--r--cherrypy/__init__.py2
-rw-r--r--cherrypy/wsgiserver/__init__.py2
-rw-r--r--setup.py4
3 files changed, 4 insertions, 4 deletions
diff --git a/cherrypy/__init__.py b/cherrypy/__init__.py
index d84f236d..73e2d675 100644
--- a/cherrypy/__init__.py
+++ b/cherrypy/__init__.py
@@ -57,7 +57,7 @@ These API's are described in the CherryPy specification:
http://www.cherrypy.org/wiki/CherryPySpec
"""
-__version__ = "3.1.0beta3"
+__version__ = "3.1.0rc1"
from urlparse import urljoin as _urljoin
diff --git a/cherrypy/wsgiserver/__init__.py b/cherrypy/wsgiserver/__init__.py
index f8d3112e..1e753530 100644
--- a/cherrypy/wsgiserver/__init__.py
+++ b/cherrypy/wsgiserver/__init__.py
@@ -1230,7 +1230,7 @@ class CherryPyWSGIServer(object):
protocol = "HTTP/1.1"
_bind_addr = "127.0.0.1"
- version = "CherryPy/3.1.0beta3"
+ version = "CherryPy/3.1.0rc1"
ready = False
_interrupt = None
diff --git a/setup.py b/setup.py
index cba5d20e..56c55be7 100644
--- a/setup.py
+++ b/setup.py
@@ -18,7 +18,7 @@ required_python_version = '2.3'
# arguments for the setup command
###############################################################################
name = "CherryPy"
-version = "3.1.0beta3"
+version = "3.1.0rc1"
desc = "Object-Oriented HTTP framework"
long_desc = "CherryPy is a pythonic, object-oriented HTTP framework"
classifiers=[
@@ -41,7 +41,7 @@ packages=[
"cherrypy.tutorial", "cherrypy.test",
"cherrypy.wsgiserver", "cherrypy.process",
]
-download_url="http://download.cherrypy.org/cherrypy/3.1.0beta3/"
+download_url="http://download.cherrypy.org/cherrypy/3.1.0rc1/"
data_files=[
('cherrypy', ['cherrypy/cherryd',
'cherrypy/favicon.ico',