Changeset 1546
- Timestamp:
- 12/21/06 08:43:54
- Files:
-
- trunk/cherrypy/__init__.py (modified) (1 diff)
- trunk/cherrypy/wsgiserver.py (modified) (1 diff)
- trunk/setup.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/cherrypy/__init__.py
r1541 r1546 1 1 """Global module that all modules developing with CherryPy should import.""" 2 2 3 __version__ = '3.0.0 RC1'3 __version__ = '3.0.0' 4 4 5 5 from urlparse import urljoin as _urljoin trunk/cherrypy/wsgiserver.py
r1539 r1546 707 707 708 708 protocol = "HTTP/1.1" 709 version = "CherryPy/3.0.0 RC1"709 version = "CherryPy/3.0.0" 710 710 ready = False 711 711 _interrupt = None trunk/setup.py
r1515 r1546 19 19 ############################################################################### 20 20 name = "CherryPy" 21 version = "3.0.0 RC1"21 version = "3.0.0" 22 22 desc = "Object-Oriented HTTP framework" 23 23 long_desc = "CherryPy is a pythonic, object-oriented HTTP framework" 24 24 classifiers=[ 25 #"Development Status :: 5 - Production/Stable",26 "Development Status :: 4 - Beta",25 "Development Status :: 5 - Production/Stable", 26 #"Development Status :: 4 - Beta", 27 27 "Environment :: Web Environment", 28 28 "Intended Audience :: Developers", … … 41 41 "cherrypy.tutorial", "cherrypy.test", 42 42 ] 43 download_url="http://download.cherrypy.org/cherrypy/3.0 beta2/"43 download_url="http://download.cherrypy.org/cherrypy/3.0.0/" 44 44 data_files=[ 45 45 ('cherrypy/tutorial',

