Skip to content

Commit d06b3bd

Browse files
author
Richard Jones
committed
pre-release stuff
1 parent 3c1a465 commit d06b3bd

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

CHANGES.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
This file contains the changes to the Roundup system over time. The entries
22
are given with the most recent entry first.
33

4-
2004-07-20 0.7.6
4+
2004-07-21 0.7.6
55
Fixed:
66
- rdbms backend full text search failure after import (sf bug 980314)
77
- rdbms backends not filtering correctly on link=None

doc/announcement.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,12 @@ from Ka-Ping Yee in the Software Carpentry "Track" design competition.
1717
- document the STATIC_FILES config var
1818
- implement the HTTP HEAD command (sf bug 992544)
1919
- fix journal export of files to remove content from CSV files
20+
- API clarification. Previously, the anydbm/bsddb/metakit filter() methods
21+
had required exact matches to Multilink argument lists. The RDBMS
22+
backends treated Multilink matches like all other data types - matching
23+
any of the Multilink argument list is good enough. The latter behaviour
24+
is implemented across the board now.
25+
- fix metakit handling of filter on Link==None
2026

2127
If you're upgrading from an older version of Roundup you *must* follow
2228
the "Software Upgrade" guidelines given in the maintenance documentation.

setup.py

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1717
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1818
#
19-
# $Id: setup.py,v 1.64.2.6 2004-07-20 23:27:00 richard Exp $
19+
# $Id: setup.py,v 1.64.2.7 2004-07-21 01:25:55 richard Exp $
2020

2121
from distutils.core import setup, Extension
2222
from distutils.util import get_platform
@@ -136,8 +136,8 @@ def check_manifest():
136136
try:
137137
f = open('MANIFEST')
138138
except:
139-
print '\n*** SOURCE ERROR: The MANIFEST file is missing!'
140-
sys.exit(1)
139+
print '\n*** WARNING: The MANIFEST file is missing!'
140+
return
141141
try:
142142
manifest = [l.strip() for l in f.readlines()]
143143
finally:
@@ -232,6 +232,12 @@ def main():
232232
- document the STATIC_FILES config var
233233
- implement the HTTP HEAD command (sf bug 992544)
234234
- fix journal export of files to remove content from CSV files
235+
- API clarification. Previously, the anydbm/bsddb/metakit filter() methods
236+
had required exact matches to Multilink argument lists. The RDBMS
237+
backends treated Multilink matches like all other data types - matching
238+
any of the Multilink argument list is good enough. The latter behaviour
239+
is implemented across the board now.
240+
- fix metakit handling of filter on Link==None
235241
''',
236242
author = "Richard Jones",
237243
author_email = "[email protected]",

0 commit comments

Comments
 (0)