Mercurial > p > roundup > code
changeset 2422:fcb2948ebdd9 maint-0.7
pre-release stuff
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Wed, 09 Jun 2004 06:43:02 +0000 |
| parents | 30aed893566b |
| children | d96652862f1d |
| files | doc/announcement.txt roundup/__init__.py setup.py |
| diffstat | 3 files changed, 24 insertions(+), 18 deletions(-) [+] |
line wrap: on
line diff
--- a/doc/announcement.txt Wed Jun 09 06:40:35 2004 +0000 +++ b/doc/announcement.txt Wed Jun 09 06:43:02 2004 +0000 @@ -2,14 +2,17 @@ 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. -0.7.3 is a SECURITY FIX release of Roundup. All users are encouraged -to upgrade immediately. +0.7.4 is a bug fix release, including: -This release also fixes a few minor bugs: - -- add "checked" to truth values for Boolean input -- fixed import in metakit backend -- fix SearchAction use of Class.filter(), and clarify API docs for same +- re-acquire the OTK manager when we re-open the database +- mailgw handler can close the database on us +- fixed grouping by a NULL Link value +- fixed anydbm import/export (sf bugs 965216, 964457, 964450) +- fix python 2.3.3 strftime deprecation warning (sf patch 968398) +- fix some column datatypes in postgresql and mysql (sf bugs 962611, + 959177 and 964231) +- fixed RDBMS journal packing (sf bug 959177) +- fixed filtering by floats in anydbm (sf bug 963584) If you're upgrading from an older version of Roundup you *must* follow the "Software Upgrade" guidelines given in the maintenance documentation. @@ -47,5 +50,5 @@ It comes with two issue tracker templates (a classic bug/feature tracker and a minimal skeleton) and seven database back-ends (anydbm, bsddb, bsddb3, -sqlite, metakit, mysql and postgresql). +sqlite, metakit, mysql and postgresql).
--- a/roundup/__init__.py Wed Jun 09 06:40:35 2004 +0000 +++ b/roundup/__init__.py Wed Jun 09 06:43:02 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.30.2.3 2004-05-27 22:28:02 richard Exp $ +# $Id: __init__.py,v 1.30.2.4 2004-06-09 06:43:02 richard Exp $ '''Roundup - issue tracking for knowledge workers. @@ -68,6 +68,6 @@ ''' __docformat__ = 'restructuredtext' -__version__ = '0.7.3' +__version__ = '0.7.4' # vim: set filetype=python ts=4 sw=4 et si
--- a/setup.py Wed Jun 09 06:40:35 2004 +0000 +++ b/setup.py Wed Jun 09 06:43:02 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.64.2.3 2004-05-27 22:17:23 richard Exp $ +# $Id: setup.py,v 1.64.2.4 2004-06-09 06:43:02 richard Exp $ from distutils.core import setup, Extension from distutils.util import get_platform @@ -217,14 +217,17 @@ If you're upgrading from an older version of Roundup you *must* follow the "Software Upgrade" guidelines given in the maintenance documentation. -0.7.3 is a SECURITY FIX release of Roundup. All users are encouraged -to upgrade immediately. +0.7.4 is a bug fix release, including: -This release also fixes a few minor bugs: - -- add "checked" to truth values for Boolean input -- fixed import in metakit backend -- fix SearchAction use of Class.filter(), and clarify API docs for same +- re-acquire the OTK manager when we re-open the database +- mailgw handler can close the database on us +- fixed grouping by a NULL Link value +- fixed anydbm import/export (sf bugs 965216, 964457, 964450) +- fix python 2.3.3 strftime deprecation warning (sf patch 968398) +- fix some column datatypes in postgresql and mysql (sf bugs 962611, + 959177 and 964231) +- fixed RDBMS journal packing (sf bug 959177) +- fixed filtering by floats in anydbm (sf bug 963584) ''', author = "Richard Jones", author_email = "richard@users.sourceforge.net",
