Mercurial > p > roundup > code
changeset 2222:e481d576e8b4 maint-0.6 0.6.9
pre-release stuff
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Sun, 18 Apr 2004 06:38:22 +0000 |
| parents | fc1d10a74651 |
| children | ffd14fa75bec |
| files | CHANGES.txt doc/announcement.txt roundup/__init__.py setup.py |
| diffstat | 4 files changed, 14 insertions(+), 28 deletions(-) [+] |
line wrap: on
line diff
--- 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
--- 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.
--- 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
--- 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",
