Changeset 498
- Timestamp:
- 01/10/06 11:52:18 (3 years ago)
- Files:
-
- branches/0.8/CHANGELOG.txt (modified) (1 diff)
- branches/0.8/setup.py (modified) (2 diffs)
- branches/0.8/turbogears/__init__.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/0.8/CHANGELOG.txt
r444 r498 1 1 TurboGears Changelog 2 2 ==================== 3 4 0.8.8 (January 10, 2006) 5 ------------------------ 6 7 * A security flaw was discovered in CherryPy's static filter. This 8 TurboGears update changes the CherryPy requirement to 2.1.1. 3 9 4 10 0.8.7 (January 4, 2006) branches/0.8/setup.py
r444 r498 15 15 cmdclass = commands, 16 16 name="TurboGears", 17 version="0.8. 7",17 version="0.8.8", 18 18 author="Kevin Dangoor", 19 19 author_email="dangoor+turbogears@gmail.com", … … 37 37 zip_safe=False, 38 38 install_requires = ["kid >= 0.8", 39 "CherryPy >= 2.1. 0, != 2.1.0-rc2, != 2.1.0-rc1, != 2.1.0-beta",39 "CherryPy >= 2.1.1", 40 40 "SQLObject >= 0.7.1dev_r1457", "json-py >= 3.4", 41 41 "elementtree >= 1.2.6", branches/0.8/turbogears/__init__.py
r444 r498 1 1 "TurboGears Front-to-Back Web Framework" 2 __version__ = "0.8. 7"2 __version__ = "0.8.8" 3 3 __author__ = "Kevin Dangoor" 4 4 __email__ = "dangoor+turbogears@gmail.com"