Skip to content

Commit b191898

Browse files
author
Richard Jones
committed
pre-release changes
1 parent ca89599 commit b191898

File tree

4 files changed

+25
-20
lines changed

4 files changed

+25
-20
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-??-?? 0.5.6
4+
2003-02-27 0.5.6
55
- fixed templating filter function arguments (sf bug 678911)
66
- fixed multiselect in searching (sf bug 676874)
77
- fixed parsing of content-disposition filenames (sf bug 675116)
@@ -15,6 +15,7 @@ are given with the most recent entry first.
1515
- fixed error in indexargs_url (thanks Patrick Ohly)
1616
- fixed getnode (sf bug 684531)
1717
- fixed args to some date templating methods (sf bug 689670)
18+
- fixed database corruption in rdbms property mutation
1819

1920

2021
2003-01-24 0.5.5

doc/announcement.txt

Lines changed: 19 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,33 @@
11
=================================================
2-
SC-Track Roundup 0.5.5 - an issue tracking system
2+
SC-Track Roundup 0.5.6 - an issue tracking system
33
=================================================
44

5+
Note: This releases fixes a serious bug in the sqlite and gadfly backends
6+
which could cause data loss. Users are strongly encouraged to upgrade to this
7+
version.
8+
59
This is a bugfix release for version 0.5.x - if you're upgrading from before
610
0.5, you *must* read doc/upgrading.txt!
711

8-
Unfortunately, the Zope frontend for Roundup is currently broken, with no
9-
fix in the forseeable future.
10-
1112
Roundup requires python 2.1.3 or later for correct operation. Users of the
1213
sqlite backend are encouraged to upgrade sqlite to version 2.7.3.
1314

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

16-
- fixed rdbms searching by ID (sf bug 666615)
17-
- fixed metakit searching by ID
18-
- detect corrupted index and raise semi-useful exception (sf bug 666767)
19-
- open server logfile unbuffered
20-
- revert StringHTMLProperty to not hyperlink text by default
21-
- several fixes to CGI form handling
22-
- fix unlink journalling bug in metakit backend
23-
- fixed hyperlinking ambiguity (sf bug 669777)
24-
- fixed cookie path to use TRACKER_WEB (sf bug 667020) (thanks Nathaniel Smith
25-
for helping chase it down and Luke Opperman for confirming fix)
26-
17+
- fixed database corruption in rdbms property mutation
18+
- fixed templating filter function arguments (sf bug 678911)
19+
- fixed multiselect in searching (sf bug 676874)
20+
- fixed parsing of content-disposition filenames (sf bug 675116)
21+
- added 'h' to roundup-server optarg list (sf bug 674070)
22+
- fixed doc for db.history in anydbm and rdbms_common (sf bug 679221)
23+
- fixed roundup-reminder (sf bug 681042)
24+
- fixed int assumptions about Number values (sf bug 677762)
25+
- clarified licensing
26+
- another attempt to fix cookie misbehaviour - customise cookie name using
27+
tracker name
28+
- fixed error in indexargs_url (thanks Patrick Ohly)
29+
- fixed getnode (sf bug 684531)
30+
- fixed args to some date templating methods (sf bug 689670)
2731

2832
Source and documentation is available at the website:
2933
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.1 2003-01-24 06:25:15 richard Exp $
18+
# $Id: __init__.py,v 1.18.2.2 2003-02-27 11:21:24 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.5'
70+
__version__ = '0.5.6'
7171

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

setup.py

Lines changed: 2 additions & 2 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.41.2.1 2003-02-20 22:59:01 richard Exp $
19+
# $Id: setup.py,v 1.41.2.2 2003-02-27 11:21:21 richard Exp $
2020

2121
from distutils.core import setup, Extension
2222
from distutils.util import get_platform
@@ -181,7 +181,7 @@ def buildTemplates():
181181
setup(
182182
name = "roundup",
183183
version = __version__,
184-
description = "Roundup issue tracking system.",
184+
description = "Roundup issue tracking system",
185185
author = "Richard Jones",
186186
author_email = "[email protected]",
187187
url = 'http://sourceforge.net/projects/roundup/',

0 commit comments

Comments
 (0)