Skip to content

Commit 3b85fa0

Browse files
author
Richard Jones
committed
pre-release machinations
1 parent e977f5f commit 3b85fa0

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

CHANGES.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
This file contains the changes to the Roundup system over time. The entries
22
are given with the most recent entry first.
33

4-
2003-07-?? 0.5.9
4+
2003-07-18 0.5.9
55
- backported XSS message cleaning fix (sf bug 757128)
66
- only clean sessions once per hour (backport from trunk)
77
- remember the session db type (much faster session db opening)
88
- backported last-modified and if-modified-since header support for static
99
files (ie. style.css etc.) from HEAD
1010
- changed rdbms_common to fix sql backends under Py2.3
11+
- don't open the database in cgi if it's not necessary
1112

1213

1314
2003-06-19 0.5.8

doc/announcement.txt

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
=================================================
2-
SC-Track Roundup 0.5.8 - an issue tracking system
2+
SC-Track Roundup 0.5.9 - an issue tracking system
33
=================================================
44

55
This is a bugfix release for version 0.5.x - if you're upgrading from before
@@ -14,8 +14,13 @@ sqlite backend are encouraged to upgrade sqlite to version 2.7.3. Python
1414

1515
This release has:
1616

17-
- a couple of bug fixes
18-
- a couple of major speed-ups for web users
17+
- backported XSS message cleaning fix (sf bug 757128)
18+
- only clean sessions once per hour (backport from HEAD)
19+
- remember the session db type (much faster session db opening)
20+
- backported last-modified and if-modified-since header support for static
21+
files (ie. style.css etc.) from HEAD
22+
- changed rdbms_common to fix sql backends under Py2.3
23+
- don't open the database in cgi if it's not necessary
1924

2025
Source and documentation is available at the website:
2126
http://roundup.sourceforge.net/

roundup/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1616
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1717
#
18-
# $Id: __init__.py,v 1.18.2.4 2003-06-18 23:52:54 richard Exp $
18+
# $Id: __init__.py,v 1.18.2.5 2003-07-18 07:05:56 richard Exp $
1919

2020
''' Roundup - issue tracking for knowledge workers.
2121
@@ -67,6 +67,6 @@
6767
much prettier cake :)
6868
'''
6969

70-
__version__ = '0.5.8'
70+
__version__ = '0.5.9'
7171

7272
# vim: set filetype=python ts=4 sw=4 et si

0 commit comments

Comments
 (0)