Skip to content

Commit cb76c51

Browse files
author
Richard Jones
committed
pre-release stuff
1 parent c55d290 commit cb76c51

File tree

3 files changed

+34
-18
lines changed

3 files changed

+34
-18
lines changed

CHANGES.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Fixed:
1414
- fixed IE double-submit when it shouldn't (sf bug 842254)
1515
- fixed check for JS pop()/push() to make more general (sf bug 877504)
1616
- fix re-enabling queries (sf bug 861940)
17-
- use supplied content-type on file uploads before trying filename)
17+
- use supplied content-type on file uploads before trying filename
1818
- fixed roundup-reminder script to use default schema (thanks Klamer Schutte)
1919
- fixed edit action / parsePropsFromForm to handle index-page edits better
2020
- safer logging from HTTP server (sf bug 896917)

doc/announcement.txt

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,25 @@
11
=================================================
2-
SC-Track Roundup 0.6.4 - an issue tracking system
2+
SC-Track Roundup 0.6.5 - an issue tracking system
33
=================================================
44

55
I'm pleased to announce this maintenance release of Roundup which fixes
66
some bugs:
77

8-
- fixed date arithmetic to not allow day-of-month == 0 (sf bug 853306)
9-
- fixed date arithmetic to limit hours-per-day to 24, not 60
10-
- fixed activity displaying as future because of Date arithmetic fix in 0.6.3
11-
(sf bug 842027).
12-
- hard-coded python2.3-ism (socket.timeout) fixed
13-
- fix Windows service mode for roundup-server (sf bug 819890)
14-
- fixed #white in cgitb (thanks Henrik Levkowetz)
8+
- mailgw handles of subject-line errors better
9+
- allow serving of FileClass file content when the class isn't called
10+
"file" (eg. messages and other FileClasses)
11+
- allowed negative ids (ie. new item markers) in HTMLClass.getItem,
12+
allowing "db/file_with_status/-1/status/menu" to generate a useful
13+
widget
14+
- fixed content-type when templates are serving up xml (thanks Godefroid
15+
Chapelle)
16+
- fixed IE double-submit when it shouldn't (sf bug 842254)
17+
- fixed check for JS pop()/push() to make more general (sf bug 877504)
18+
- fix re-enabling queries (sf bug 861940)
19+
- use supplied content-type on file uploads before trying filename
20+
- fixed roundup-reminder script to use default schema (thanks Klamer Schutte)
21+
- fixed edit action / parsePropsFromForm to handle index-page edits better
22+
- safer logging from HTTP server (sf bug 896917)
1523

1624
If you're upgrading from an older version of Roundup you *must* follow
1725
the "Software Upgrade" guidelines given in the maintenance documentation.

setup.py

Lines changed: 17 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1717
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1818
#
19-
# $Id: setup.py,v 1.55.2.5 2003-12-16 20:58:26 richard Exp $
19+
# $Id: setup.py,v 1.55.2.6 2004-02-15 23:27:44 richard Exp $
2020

2121
from distutils.core import setup, Extension
2222
from distutils.util import get_platform
@@ -188,14 +188,22 @@ def main():
188188
command-line, web and e-mail interfaces. It is based on the winning design
189189
from Ka-Ping Yee in the Software Carpentry "Track" design competition.
190190
191-
The 0.6.4 release fixes some bugs:
192-
- fixed date arithmetic to not allow day-of-month == 0 (sf bug 853306)
193-
- fixed date arithmetic to limit hours-per-day to 24, not 60
194-
- fixed activity displaying as future because of Date arithmetic fix in 0.6.3
195-
(sf bug 842027).
196-
- hard-coded python2.3-ism (socket.timeout) fixed
197-
- fix Windows service mode for roundup-server (sf bug 819890)
198-
- fixed #white in cgitb (thanks Henrik Levkowetz)
191+
The 0.6.5 release fixes some bugs:
192+
- mailgw handling of subject-line errors
193+
- allow serving of FileClass file content when the class isn't called
194+
"file" (eg. messages and other FileClasses)
195+
- allowed negative ids (ie. new item markers) in HTMLClass.getItem,
196+
allowing "db/file_with_status/-1/status/menu" to generate a useful
197+
widget
198+
- fixed content-type when templates are serving up xml (thanks Godefroid
199+
Chapelle)
200+
- fixed IE double-submit when it shouldn't (sf bug 842254)
201+
- fixed check for JS pop()/push() to make more general (sf bug 877504)
202+
- fix re-enabling queries (sf bug 861940)
203+
- use supplied content-type on file uploads before trying filename
204+
- fixed roundup-reminder script to use default schema (thanks Klamer Schutte)
205+
- fixed edit action / parsePropsFromForm to handle index-page edits better
206+
- safer logging from HTTP server (sf bug 896917)
199207
''',
200208
author = "Richard Jones",
201209
author_email = "[email protected]",

0 commit comments

Comments
 (0)