# HG changeset patch # User Richard Jones # Date 1082270302 0 # Node ID e481d576e8b4f9b4e37ff9e74272fe21f5289e13 # Parent fc1d10a74651ee7b1e106376c035487f786ad136 pre-release stuff diff -r fc1d10a74651 -r e481d576e8b4 CHANGES.txt --- a/CHANGES.txt Mon Apr 12 23:50:04 2004 +0000 +++ b/CHANGES.txt Sun Apr 18 06:38:22 2004 +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. -2004-??-?? 0.6.9 +2004-04-18 0.6.9 Fixed: - paging in classhelp popup was broken - socket timeout error logging can fail diff -r fc1d10a74651 -r e481d576e8b4 doc/announcement.txt --- a/doc/announcement.txt Mon Apr 12 23:50:04 2004 +0000 +++ b/doc/announcement.txt Sun Apr 18 06:38:22 2004 +0000 @@ -1,17 +1,10 @@ -I'm pleased to announce Roundup 0.6.8, a maintenance release which fixes +I'm pleased to announce Roundup 0.6.9, a maintenance release which fixes some bugs: -- existing trackers (ie. live ones) may be used as templates for new - trackers - the TEMPLATE-INFO.txt name entry has the tracker's dir name - appended (so the demo tracker's template name is "classic-demo") -- handle bad multilink input at item creation time better (sf bug 917834) -- make sure email signature starts on a newline (sf bug 919759) -- add line to rego email to help URL detection (sf bug 906247) -- look harder for text/plain in email -- fixed fallback excel writer in rcsv so it has a delimiter -- fixed setup.py's use of listTemplates (!) -- make rdbms serialise() less trusting -- handle Boolean values in history HTML display +- paging in classhelp popup was broken +- socket timeout error logging can fail +- hyperlink designators in message display (sf bug 931828) +- don't match retired items in RDBMS stringFind If you're upgrading from an older version of Roundup you *must* follow the "Software Upgrade" guidelines given in the maintenance documentation. diff -r fc1d10a74651 -r e481d576e8b4 roundup/__init__.py --- a/roundup/__init__.py Mon Apr 12 23:50:04 2004 +0000 +++ b/roundup/__init__.py Sun Apr 18 06:38:22 2004 +0000 @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: __init__.py,v 1.25.2.8 2004-04-01 00:07:35 richard Exp $ +# $Id: __init__.py,v 1.25.2.9 2004-04-18 06:38:22 richard Exp $ ''' Roundup - issue tracking for knowledge workers. @@ -67,6 +67,6 @@ much prettier cake :) ''' -__version__ = '0.6.8' +__version__ = '0.6.9' # vim: set filetype=python ts=4 sw=4 et si diff -r fc1d10a74651 -r e481d576e8b4 setup.py --- a/setup.py Mon Apr 12 23:50:04 2004 +0000 +++ b/setup.py Sun Apr 18 06:38:22 2004 +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.10 2004-04-01 00:15:55 richard Exp $ +# $Id: setup.py,v 1.55.2.11 2004-04-18 06:38:22 richard Exp $ from distutils.core import setup, Extension from distutils.util import get_platform @@ -188,18 +188,11 @@ 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.8 release fixes some bugs: -- existing trackers (ie. live ones) may be used as templates for new - trackers - the TEMPLATE-INFO.txt name entry has the tracker's dir name - appended (so the demo tracker's template name is "classic-demo") -- handle bad multilink input at item creation time better (sf bug 917834) -- make sure email signature starts on a newline (sf bug 919759) -- add line to rego email to help URL detection (sf bug 906247) -- look harder for text/plain in email -- fixed fallback excel writer in rcsv so it has a delimiter -- fixed setup.py's use of listTemplates (!) -- make rdbms serialise() less trusting -- handle Boolean values in history HTML display +The 0.6.9 release fixes some bugs: +- paging in classhelp popup was broken +- socket timeout error logging can fail +- hyperlink designators in message display (sf bug 931828) +- don't match retired items in RDBMS stringFind ''', author = "Richard Jones", author_email = "richard@users.sourceforge.net",