Skip to content

Commit dcbfa52

Browse files
author
Richard Jones
committed
pre-release stuff
1 parent 8207a75 commit dcbfa52

File tree

3 files changed

+21
-21
lines changed

3 files changed

+21
-21
lines changed

CHANGES.txt

Lines changed: 1 addition & 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.6.4
4+
2003-12-17 0.6.4
55
Fixed:
66
- fixed date arithmetic to not allow day-of-month == 0 (sf bug 853306)
77
- fixed date arithmetic to limit hours-per-day to 24, not 60

doc/announcement.txt

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

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

8-
- added script to help migrating queries from pre-0.6 trackers
9-
- fixed javascript for help window for only one checkbox case
10-
- Date +/- Interval now works, and Date - Date also works
11-
- handle socket timeout exception (thanks Marcus Priesch)
12-
- fixed retirement of items in rdbms imports (sf bug 841355)
13-
- fixed bug in looking up journal of newly-created items in *dbm backends
14-
- fixed detectors fix incorrectly fixed in bugfix release 0.6.2
15-
- added note to upgrading doc for detectors fix in 0.6.2
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)
1615

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

setup.py

Lines changed: 12 additions & 11 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.4 2003-11-14 06:14:48 jlgijsbers Exp $
19+
# $Id: setup.py,v 1.55.2.5 2003-12-16 20:58:26 richard Exp $
2020

2121
from distutils.core import setup, Extension
2222
from distutils.util import get_platform
@@ -180,21 +180,22 @@ def main():
180180
setup(
181181
name = "roundup",
182182
version = __version__,
183-
description = "Roundup issue tracking system.",
183+
description = "Roundup is a simple-to-use and -install "\
184+
"issue-tracking system with command-line, web and e-mail "\
185+
"interfaces.",
184186
long_description =
185187
'''Roundup is a simple-to-use and -install issue-tracking system with
186188
command-line, web and e-mail interfaces. It is based on the winning design
187189
from Ka-Ping Yee in the Software Carpentry "Track" design competition.
188190
189-
The 0.6.3 release fixes some bugs:
190-
- added script to help migrating queries from pre-0.6 trackers
191-
- fixed javascript for help window for only one checkbox case
192-
- Date +/- Interval now works, and Date - Date also works
193-
- handle socket timeout exception (thanks Marcus Priesch)
194-
- fixed retirement of items in rdbms imports (sf bug 841355)
195-
- fixed bug in looking up journal of newly-created items in *dbm backends
196-
- fixed detectors fix incorrectly fixed in bugfix release 0.6.2
197-
- added note to upgrading doc for detectors fix in 0.6.2
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)
198199
''',
199200
author = "Richard Jones",
200201
author_email = "[email protected]",

0 commit comments

Comments
 (0)