summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2016-02-05 20:10:51 -0500
committerJason R. Coombs <jaraco@jaraco.com>2016-02-05 20:10:51 -0500
commit7cc8a31dd3e21a89d0bbdfb76d065c79d6a7f39c (patch)
tree8c36a3d74a12a9026f47402bb5a3f7c678b02232
parent7729cdd97cbe509bbc3d9fb68f112e3dff17e77e (diff)
downloadcherrypy-7cc8a31dd3e21a89d0bbdfb76d065c79d6a7f39c.tar.gz
Bumped to 5.0.2 in preparation for next release.
-rw-r--r--cherrypy/__init__.py2
-rw-r--r--cherrypy/wsgiserver/wsgiserver2.py2
-rw-r--r--cherrypy/wsgiserver/wsgiserver3.py2
-rw-r--r--setup.py2
4 files changed, 4 insertions, 4 deletions
diff --git a/cherrypy/__init__.py b/cherrypy/__init__.py
index 5da48329..7db50c4b 100644
--- a/cherrypy/__init__.py
+++ b/cherrypy/__init__.py
@@ -56,7 +56,7 @@ with customized or extended components. The core API's are:
These API's are described in the `CherryPy specification <https://bitbucket.org/cherrypy/cherrypy/wiki/CherryPySpec>`_.
"""
-__version__ = "5.0.1"
+__version__ = "5.0.2"
from cherrypy._cpcompat import urljoin as _urljoin, urlencode as _urlencode
from cherrypy._cpcompat import basestring, unicodestr
diff --git a/cherrypy/wsgiserver/wsgiserver2.py b/cherrypy/wsgiserver/wsgiserver2.py
index b8f9ef4d..828b243f 100644
--- a/cherrypy/wsgiserver/wsgiserver2.py
+++ b/cherrypy/wsgiserver/wsgiserver2.py
@@ -1756,7 +1756,7 @@ class HTTPServer(object):
timeout = 10
"""The timeout in seconds for accepted connections (default 10)."""
- version = "CherryPy/5.0.1"
+ version = "CherryPy/5.0.2"
"""A version string for the HTTPServer."""
software = None
diff --git a/cherrypy/wsgiserver/wsgiserver3.py b/cherrypy/wsgiserver/wsgiserver3.py
index dbc24d22..b3942c90 100644
--- a/cherrypy/wsgiserver/wsgiserver3.py
+++ b/cherrypy/wsgiserver/wsgiserver3.py
@@ -1478,7 +1478,7 @@ class HTTPServer(object):
timeout = 10
"""The timeout in seconds for accepted connections (default 10)."""
- version = "CherryPy/5.0.1"
+ version = "CherryPy/5.0.2"
"""A version string for the HTTPServer."""
software = None
diff --git a/setup.py b/setup.py
index 107fc0e5..e7525eb8 100644
--- a/setup.py
+++ b/setup.py
@@ -36,7 +36,7 @@ class cherrypy_build_py(build_py):
# arguments for the setup command
###############################################################################
name = "CherryPy"
-version = "5.0.1"
+version = "5.0.2"
desc = "Object-Oriented HTTP framework"
long_desc = "CherryPy is a pythonic, object-oriented HTTP framework"
classifiers = [