Mercurial > p > roundup > code
changeset 2500:00f3eec8ef9a maint-0.7
pre-release stuff
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Thu, 24 Jun 2004 07:59:56 +0000 |
| parents | 4d112730e02f |
| children | f778acabf200 |
| files | CHANGES.txt doc/announcement.txt roundup/__init__.py setup.py |
| diffstat | 4 files changed, 33 insertions(+), 25 deletions(-) [+] |
line wrap: on
line diff
--- a/CHANGES.txt Thu Jun 24 07:14:49 2004 +0000 +++ b/CHANGES.txt Thu Jun 24 07:59:56 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.7.5 +2004-06-24 0.7.5 Fixed: - force lookup of journal props in anydbm filtering - fixed lookup of "missing" Link values for new props in anydbm backend
--- a/doc/announcement.txt Thu Jun 24 07:14:49 2004 +0000 +++ b/doc/announcement.txt Thu Jun 24 07:59:56 2004 +0000 @@ -2,18 +2,21 @@ 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.4 is a bug fix release, including: +0.7.5 is a bug fix release, including: -- 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) -- fixed mysql upgrading of journals (sf bug 950410) +- force lookup of journal props in anydbm filtering +- fixed lookup of "missing" Link values for new props in anydbm backend +- allow list of values for id, Number and Boolean filtering in anydbm + backend +- fixed some more mysql 0.6->0.7 upgrade bugs (sf bug 950410) +- fixed Boolean values in postgresql (sf bugs 972546 and 972600) +- fixed -g arg to roundup-server (sf bug 973946) +- better roundup-server usage string (sf bug 973352) +- include "context" always, as documented (sf bug 965447) +- fixed REMOTE_USER (external HTTP Basic auth) (sf bug 977309) +- fixed roundup-admin "find" to use better value parsing +- fixed RDBMS Class.find() to handle None value in multiple find +- export now stores file "content" in separate files in export directory 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 Thu Jun 24 07:14:49 2004 +0000 +++ b/roundup/__init__.py Thu Jun 24 07:59:56 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.4 2004-06-09 06:43:02 richard Exp $ +# $Id: __init__.py,v 1.30.2.5 2004-06-24 07:59:56 richard Exp $ '''Roundup - issue tracking for knowledge workers. @@ -68,6 +68,6 @@ ''' __docformat__ = 'restructuredtext' -__version__ = '0.7.4' +__version__ = '0.7.5' # vim: set filetype=python ts=4 sw=4 et si
--- a/setup.py Thu Jun 24 07:14:49 2004 +0000 +++ b/setup.py Thu Jun 24 07:59:56 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.4 2004-06-09 06:43:02 richard Exp $ +# $Id: setup.py,v 1.64.2.5 2004-06-24 07:59:55 richard Exp $ from distutils.core import setup, Extension from distutils.util import get_platform @@ -217,17 +217,22 @@ If you're upgrading from an older version of Roundup you *must* follow the "Software Upgrade" guidelines given in the maintenance documentation. -0.7.4 is a bug fix release, including: +0.7.5 is a bug fix release, including: -- 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) +- force lookup of journal props in anydbm filtering +- fixed lookup of "missing" Link values for new props in anydbm backend +- allow list of values for id, Number and Boolean filtering in anydbm + backend +- fixed some more mysql 0.6->0.7 upgrade bugs (sf bug 950410) +- fixed Boolean values in postgresql (sf bugs 972546 and 972600) +- fixed -g arg to roundup-server (sf bug 973946) +- better roundup-server usage string (sf bug 973352) +- include "context" always, as documented (sf bug 965447) +- fixed REMOTE_USER (external HTTP Basic auth) (sf bug 977309) +- fixed roundup-admin "find" to use better value parsing +- fixed RDBMS Class.find() to handle None value in multiple find +- export now stores file "content" in separate files in export directory + ''', author = "Richard Jones", author_email = "richard@users.sourceforge.net",
