summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.txt2
-rw-r--r--cherrypy/__init__.py2
-rw-r--r--cherrypy/wsgiserver/__init__.py2
-rw-r--r--setup.py4
4 files changed, 5 insertions, 5 deletions
diff --git a/README.txt b/README.txt
index 40fbced4..9b8fd0aa 100644
--- a/README.txt
+++ b/README.txt
@@ -1,4 +1,4 @@
-* To install, just type (python-2.3 or later needed):
+* To install, change to the directory where setup.py is located and type (python-2.3 or later needed):
python setup.py install
diff --git a/cherrypy/__init__.py b/cherrypy/__init__.py
index 1046ea5e..9d283071 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.2.0alpha"
+__version__ = "3.2.0beta"
from urlparse import urljoin as _urljoin
from urllib import urlencode as _urlencode
diff --git a/cherrypy/wsgiserver/__init__.py b/cherrypy/wsgiserver/__init__.py
index e2486c44..4a5ac985 100644
--- a/cherrypy/wsgiserver/__init__.py
+++ b/cherrypy/wsgiserver/__init__.py
@@ -1545,7 +1545,7 @@ class CherryPyWSGIServer(object):
protocol = "HTTP/1.1"
_bind_addr = "127.0.0.1"
- version = "CherryPy/3.2.0alpha"
+ version = "CherryPy/3.2.0beta"
ready = False
_interrupt = None
diff --git a/setup.py b/setup.py
index 235f5422..f1e2f1b5 100644
--- a/setup.py
+++ b/setup.py
@@ -22,12 +22,12 @@ required_python_version = '2.3'
# arguments for the setup command
###############################################################################
name = "CherryPy"
-version = "3.2.0alpha"
+version = "3.2.0beta"
desc = "Object-Oriented HTTP framework"
long_desc = "CherryPy is a pythonic, object-oriented HTTP framework"
classifiers=[
#"Development Status :: 5 - Production/Stable",
- "Development Status :: 3 - Alpha Development Status",
+ "Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: Freely Distributable",