Skip to content

Commit 2097ad5

Browse files
author
Richard Jones
committed
pre-release changes
1 parent 721ca16 commit 2097ad5

File tree

3 files changed

+21
-25
lines changed

3 files changed

+21
-25
lines changed

CHANGES.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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-01-?? 0.5.4
4+
2003-01-10 0.5.4
55
- key the templates cache off full path, not filename
66
- implemented whole-database locking
77
- hyperlinking of special text (url, email, item designator) in messages
@@ -19,6 +19,7 @@ are given with the most recent entry first.
1919
on "creation" field
2020
- display of saved queries is now performed correctly
2121

22+
2223
2002-12-11 0.5.3
2324
- added mention of how to give users multiple Roles
2425
- mention needed trailing "/" in TRACKER_WEB

doc/announcement.txt

Lines changed: 17 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
=================================================
2-
SC-Track Roundup 0.5.3 - an issue tracking system
2+
SC-Track Roundup 0.5.4 - an issue tracking system
33
=================================================
44

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

1414
We've had a good crack at bugs (thanks to all who contributed!):
1515

16-
- added mention of how to give users multiple Roles
17-
- mention needed trailing "/" in TRACKER_WEB
18-
- fixed upgrading doc to have CGI changes in the correct order
19-
- fixed double-close of anydbm backend (sf bug 639030)
20-
- removed use of string/strop from TAL/TALInterpreter
21-
- handle KeyboardInterrupt nicely
22-
- fixed Date and Interval form value handling
23-
- fixed Date.local()
24-
- email quoted text stripping is controllable again (sf bug 650742)
25-
- extract attachment name from content-disposition if name is missing (sf
26-
bug 637278)
27-
- removed FILTER_POSITION from bundled configs
28-
- reverse message listing in issue display (reversion of recent change)
29-
- bad entries for multilink editing in cgi don't traceback now (sf bug 640310)
30-
- detect and break email loops (sf bug 640854)
31-
- finished of handling of retired flag in filter() (sf bug 635260)
32-
- allow StringHTMLProperty in MultilinkHTMLProperty test to work
33-
- don't set explicit None Link properties in web create
34-
- fixed nasty sorting bug that was lowercasing properties
35-
- allow multiple :remove and :add elements per property being edited
36-
- added date header to emails (sf bug 651358)
16+
- key the templates cache off full path, not filename
17+
- implemented whole-database locking
18+
- hyperlinking of special text (url, email, item designator) in messages
19+
- fixed time default in date.py
20+
- fixed error in cgi/templates.py (sf bug 652089)
21+
- fixed handling of missing password (sf bug 655632)
22+
- applied patches for handling Outlook quirks (thanks Andrey Lebedev)
23+
(multipart/alternative, "fw" and content-type "name")
24+
- fire auditors and reactors in rdbms retire (thanks Sheila King)
25+
- better match for mailgw help "command" text
26+
- handle :add: better in cgi form parsing (sf bug 663235)
27+
- handle all-whitespace multilink values in forms (sf bug 663855)
28+
- fixed searching on date / interval fields (sf bug 658157)
29+
- fixed form elements names in search form to allow grouping and sorting
30+
on "creation" field
31+
- display of saved queries is now performed correctly
3732

3833
Source and documentation is available at the website:
3934
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.17 2002-12-10 00:11:14 richard Exp $
18+
# $Id: __init__.py,v 1.18 2003-01-09 22:59:20 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.3'
70+
__version__ = '0.5.4'
7171

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

0 commit comments

Comments
 (0)