Skip to content

Commit efbf133

Browse files
author
Richard Jones
committed
pre-release stuff
1 parent 8b4d91a commit efbf133

File tree

4 files changed

+43
-43
lines changed

4 files changed

+43
-43
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-??-?? 0.7.7
4+
2004-10-11 0.7.7
55
Fixed:
66
- ZRoundup's search interface works now (sf bug 994957)
77
- fixed history display when "ascending"

doc/announcement.txt

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -2,27 +2,27 @@ Roundup is a simple-to-use and -install issue-tracking system with
22
command-line, web and e-mail interfaces. It is based on the winning design
33
from Ka-Ping Yee in the Software Carpentry "Track" design competition.
44

5-
0.7.6 is a bug fix release, including:
5+
0.7.7 is a bug fix release, including:
66

7-
- rdbms backend full text search failure after import (sf bug 980314)
8-
- rdbms backends not filtering correctly on link=None
9-
- fix anydbm journal import (sf bug 983166)
10-
- handle postgresql bug in SQL generation (sf bug 984591)
11-
- fix dates-from-Dates (sf bug 984604)
12-
- fix messageid generated when msgid is None for send_message (sf bug 987933)
13-
- make user permissions check more sane (fix search page for anonymous)
14-
- fixed RDBMS filter() for no matches from full-text search (sf bug 990778)
15-
- fixed DateHTMLProperty for invalid date entry (sf bug 986538)
16-
- fixed external password source example (sf bug 986601)
17-
- document the STATIC_FILES config var
18-
- implement the HTTP HEAD command (sf bug 992544)
19-
- 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
7+
- ZRoundup's search interface works now (sf bug 994957)
8+
- fixed history display when "ascending"
9+
- removed references to py2.3+ boolean values (sf bug 995682)
10+
- fix static file path normalisation in security check (thanks David Linke)
11+
- less specific messages for login failures (thanks Chris Withers)
12+
- Reject raised against email messages should result in email rejection, not
13+
discarding of the message
14+
- mailgw can override the MAIL_DEFAULT_CLASS
15+
- handle Py2.3+ datetime objects as Date specs (sf bug 971300)
16+
- use row locking in MySQL newid() (sf bug 1034211)
17+
- add sanity check for sort and group on same property (sf bug 1033477)
18+
- extend OTK and session table value cols to TEXT (sf bug 1031271)
19+
- fix lookup of REMOTE_USER (sf bug 1002923)
20+
- new Interval props weren't created properly in rdbms
21+
- date.Interval() now accepts an Interval as a spec (sf bug 1041266)
22+
- handle deleted properties in RDBMS history
23+
- apply timezone in correct direction in user input (sf bug 1013097)
24+
- more efficient find() in RDBMS (sf bug 1012781)
25+
- pydotorg-specific change to mailgw to handle bizzaro permissions ;)
2626

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

roundup/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1616
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1717
#
18-
# $Id: __init__.py,v 1.30.2.6 2004-07-20 04:49:10 richard Exp $
18+
# $Id: __init__.py,v 1.30.2.7 2004-10-11 05:25:47 richard Exp $
1919

2020
'''Roundup - issue tracking for knowledge workers.
2121
@@ -68,6 +68,6 @@
6868
'''
6969
__docformat__ = 'restructuredtext'
7070

71-
__version__ = '0.7.6'
71+
__version__ = '0.7.7'
7272

7373
# vim: set filetype=python ts=4 sw=4 et si

setup.py

Lines changed: 20 additions & 20 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.7 2004-07-21 01:25:55 richard Exp $
19+
# $Id: setup.py,v 1.64.2.8 2004-10-11 05:25:46 richard Exp $
2020

2121
from distutils.core import setup, Extension
2222
from distutils.util import get_platform
@@ -219,25 +219,25 @@ def main():
219219
220220
This is a bug fix release, including:
221221
222-
- rdbms backend full text search failure after import (sf bug 980314)
223-
- rdbms backends not filtering correctly on link=None
224-
- fix anydbm journal import (sf bug 983166)
225-
- handle postgresql bug in SQL generation (sf bug 984591)
226-
- fix dates-from-Dates (sf bug 984604)
227-
- fix messageid generated when msgid is None for send_message (sf bug 987933)
228-
- make user permissions check more sane (fix search page for anonymous)
229-
- fixed RDBMS filter() for no matches from full-text search (sf bug 990778)
230-
- fixed DateHTMLProperty for invalid date entry (sf bug 986538)
231-
- fixed external password source example (sf bug 986601)
232-
- document the STATIC_FILES config var
233-
- implement the HTTP HEAD command (sf bug 992544)
234-
- 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
222+
- ZRoundup's search interface works now (sf bug 994957)
223+
- fixed history display when "ascending"
224+
- removed references to py2.3+ boolean values (sf bug 995682)
225+
- fix static file path normalisation in security check (thanks David Linke)
226+
- less specific messages for login failures (thanks Chris Withers)
227+
- Reject raised against email messages should result in email rejection, not
228+
discarding of the message
229+
- mailgw can override the MAIL_DEFAULT_CLASS
230+
- handle Py2.3+ datetime objects as Date specs (sf bug 971300)
231+
- use row locking in MySQL newid() (sf bug 1034211)
232+
- add sanity check for sort and group on same property (sf bug 1033477)
233+
- extend OTK and session table value cols to TEXT (sf bug 1031271)
234+
- fix lookup of REMOTE_USER (sf bug 1002923)
235+
- new Interval props weren't created properly in rdbms
236+
- date.Interval() now accepts an Interval as a spec (sf bug 1041266)
237+
- handle deleted properties in RDBMS history
238+
- apply timezone in correct direction in user input (sf bug 1013097)
239+
- more efficient find() in RDBMS (sf bug 1012781)
240+
- pydotorg-specific change to mailgw to handle bizzaro permissions ;)
241241
''',
242242
author = "Richard Jones",
243243
author_email = "[email protected]",

0 commit comments

Comments
 (0)