Mercurial > p > roundup > code
changeset 1958:267e4ba89b54 maint-0.6 0.6.4
pre-release stuff
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Tue, 16 Dec 2003 20:58:26 +0000 |
| parents | 15a7aae3f34c |
| children | 8d3182e78ebc |
| files | CHANGES.txt doc/announcement.txt setup.py |
| diffstat | 3 files changed, 21 insertions(+), 21 deletions(-) [+] |
line wrap: on
line diff
--- a/CHANGES.txt Fri Dec 05 03:38:47 2003 +0000 +++ b/CHANGES.txt Tue Dec 16 20:58:26 2003 +0000 @@ -1,7 +1,7 @@ This file contains the changes to the Roundup system over time. The entries are given with the most recent entry first. -2003-??-?? 0.6.4 +2003-12-17 0.6.4 Fixed: - fixed date arithmetic to not allow day-of-month == 0 (sf bug 853306) - fixed date arithmetic to limit hours-per-day to 24, not 60
--- a/doc/announcement.txt Fri Dec 05 03:38:47 2003 +0000 +++ b/doc/announcement.txt Tue Dec 16 20:58:26 2003 +0000 @@ -1,18 +1,17 @@ ================================================= -SC-Track Roundup 0.6.3 - an issue tracking system +SC-Track Roundup 0.6.4 - an issue tracking system ================================================= I'm pleased to announce this maintenance release of Roundup which fixes some bugs: -- added script to help migrating queries from pre-0.6 trackers -- fixed javascript for help window for only one checkbox case -- Date +/- Interval now works, and Date - Date also works -- handle socket timeout exception (thanks Marcus Priesch) -- fixed retirement of items in rdbms imports (sf bug 841355) -- fixed bug in looking up journal of newly-created items in *dbm backends -- fixed detectors fix incorrectly fixed in bugfix release 0.6.2 -- added note to upgrading doc for detectors fix in 0.6.2 +- fixed date arithmetic to not allow day-of-month == 0 (sf bug 853306) +- fixed date arithmetic to limit hours-per-day to 24, not 60 +- fixed activity displaying as future because of Date arithmetic fix in 0.6.3 + (sf bug 842027). +- hard-coded python2.3-ism (socket.timeout) fixed +- fix Windows service mode for roundup-server (sf bug 819890) +- fixed #white in cgitb (thanks Henrik Levkowetz) If you're upgrading from an older version of Roundup you *must* follow the "Software Upgrade" guidelines given in the maintenance documentation.
--- a/setup.py Fri Dec 05 03:38:47 2003 +0000 +++ b/setup.py Tue Dec 16 20:58:26 2003 +0000 @@ -16,7 +16,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: setup.py,v 1.55.2.4 2003-11-14 06:14:48 jlgijsbers Exp $ +# $Id: setup.py,v 1.55.2.5 2003-12-16 20:58:26 richard Exp $ from distutils.core import setup, Extension from distutils.util import get_platform @@ -180,21 +180,22 @@ setup( name = "roundup", version = __version__, - description = "Roundup issue tracking system.", + description = "Roundup is a simple-to-use and -install "\ + "issue-tracking system with command-line, web and e-mail "\ + "interfaces.", long_description = '''Roundup is a simple-to-use and -install issue-tracking system with command-line, web and e-mail interfaces. It is based on the winning design from Ka-Ping Yee in the Software Carpentry "Track" design competition. -The 0.6.3 release fixes some bugs: -- added script to help migrating queries from pre-0.6 trackers -- fixed javascript for help window for only one checkbox case -- Date +/- Interval now works, and Date - Date also works -- handle socket timeout exception (thanks Marcus Priesch) -- fixed retirement of items in rdbms imports (sf bug 841355) -- fixed bug in looking up journal of newly-created items in *dbm backends -- fixed detectors fix incorrectly fixed in bugfix release 0.6.2 -- added note to upgrading doc for detectors fix in 0.6.2 +The 0.6.4 release fixes some bugs: +- fixed date arithmetic to not allow day-of-month == 0 (sf bug 853306) +- fixed date arithmetic to limit hours-per-day to 24, not 60 +- fixed activity displaying as future because of Date arithmetic fix in 0.6.3 + (sf bug 842027). +- hard-coded python2.3-ism (socket.timeout) fixed +- fix Windows service mode for roundup-server (sf bug 819890) +- fixed #white in cgitb (thanks Henrik Levkowetz) ''', author = "Richard Jones", author_email = "richard@users.sourceforge.net",
