changeset 2610:d1626710cff1 maint-0.7 0.7.6

pre-release stuff
author Richard Jones <richard@users.sourceforge.net>
date Wed, 21 Jul 2004 01:25:55 +0000
parents c938aa0af17d
children 39a27b4e3296
files CHANGES.txt doc/announcement.txt setup.py
diffstat 3 files changed, 16 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/CHANGES.txt	Wed Jul 21 01:02:15 2004 +0000
+++ b/CHANGES.txt	Wed Jul 21 01:25:55 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-07-20 0.7.6
+2004-07-21 0.7.6
 Fixed:
 - rdbms backend full text search failure after import (sf bug 980314)
 - rdbms backends not filtering correctly on link=None
--- a/doc/announcement.txt	Wed Jul 21 01:02:15 2004 +0000
+++ b/doc/announcement.txt	Wed Jul 21 01:25:55 2004 +0000
@@ -17,6 +17,12 @@
 - document the STATIC_FILES config var
 - implement the HTTP HEAD command (sf bug 992544)
 - fix journal export of files to remove content from CSV files
+- API clarification. Previously, the anydbm/bsddb/metakit filter() methods
+  had required exact matches to Multilink argument lists. The RDBMS
+  backends treated Multilink matches like all other data types - matching
+  any of the Multilink argument list is good enough. The latter behaviour
+  is implemented across the board now.
+- fix metakit handling of filter on Link==None
 
 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	Wed Jul 21 01:02:15 2004 +0000
+++ b/setup.py	Wed Jul 21 01:25:55 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.6 2004-07-20 23:27:00 richard Exp $
+# $Id: setup.py,v 1.64.2.7 2004-07-21 01:25:55 richard Exp $
 
 from distutils.core import setup, Extension
 from distutils.util import get_platform
@@ -136,8 +136,8 @@
     try:
         f = open('MANIFEST')
     except:
-        print '\n*** SOURCE ERROR: The MANIFEST file is missing!'
-        sys.exit(1)
+        print '\n*** WARNING: The MANIFEST file is missing!'
+        return
     try:
         manifest = [l.strip() for l in f.readlines()]
     finally:
@@ -232,6 +232,12 @@
 - document the STATIC_FILES config var
 - implement the HTTP HEAD command (sf bug 992544)
 - fix journal export of files to remove content from CSV files
+- API clarification. Previously, the anydbm/bsddb/metakit filter() methods
+  had required exact matches to Multilink argument lists. The RDBMS
+  backends treated Multilink matches like all other data types - matching
+  any of the Multilink argument list is good enough. The latter behaviour
+  is implemented across the board now.
+- fix metakit handling of filter on Link==None
 ''',
         author = "Richard Jones",
         author_email = "richard@users.sourceforge.net",

Roundup Issue Tracker: http://roundup-tracker.org/