Changeset 2007
- Timestamp:
- 06/30/08 14:14:22
- Files:
-
- trunk/cherrypy/__init__.py (modified) (1 diff)
- trunk/cherrypy/wsgiserver/__init__.py (modified) (1 diff)
- trunk/setup.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/cherrypy/__init__.py
r1990 r2007 58 58 """ 59 59 60 __version__ = "3.1.0 rc1"60 __version__ = "3.1.0" 61 61 62 62 from urlparse import urljoin as _urljoin trunk/cherrypy/wsgiserver/__init__.py
r1988 r2007 1250 1250 protocol = "HTTP/1.1" 1251 1251 _bind_addr = "127.0.0.1" 1252 version = "CherryPy/3.1.0 rc1"1252 version = "CherryPy/3.1.0" 1253 1253 ready = False 1254 1254 _interrupt = None trunk/setup.py
r1961 r2007 19 19 ############################################################################### 20 20 name = "CherryPy" 21 version = "3.1.0 rc1"21 version = "3.1.0" 22 22 desc = "Object-Oriented HTTP framework" 23 23 long_desc = "CherryPy is a pythonic, object-oriented HTTP framework" 24 24 classifiers=[ 25 25 #"Development Status :: 5 - Production/Stable", 26 "Development Status :: 4 - Beta",26 "Development Status :: 5 - Production/Stable", 27 27 "Environment :: Web Environment", 28 28 "Intended Audience :: Developers", … … 42 42 "cherrypy.wsgiserver", "cherrypy.process", 43 43 ] 44 download_url="http://download.cherrypy.org/cherrypy/3.1.0 rc1/"44 download_url="http://download.cherrypy.org/cherrypy/3.1.0/" 45 45 data_files=[ 46 46 ('cherrypy', ['cherrypy/cherryd',

