Skip to content

Commit df19562

Browse files
author
Richard Jones
committed
stuff
1 parent c9c2cda commit df19562

File tree

2 files changed

+16
-17
lines changed

2 files changed

+16
-17
lines changed

doc/announcement.txt

Lines changed: 14 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,20 @@ 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.5 is a bug fix release, including:
6-
7-
- force lookup of journal props in anydbm filtering
8-
- fixed lookup of "missing" Link values for new props in anydbm backend
9-
- allow list of values for id, Number and Boolean filtering in anydbm
10-
backend
11-
- fixed some more mysql 0.6->0.7 upgrade bugs (sf bug 950410)
12-
- fixed Boolean values in postgresql (sf bugs 972546 and 972600)
13-
- fixed -g arg to roundup-server (sf bug 973946)
14-
- better roundup-server usage string (sf bug 973352)
15-
- include "context" always, as documented (sf bug 965447)
16-
- fixed REMOTE_USER (external HTTP Basic auth) (sf bug 977309)
17-
- fixed roundup-admin "find" to use better value parsing
18-
- fixed RDBMS Class.find() to handle None value in multiple find
19-
- export now stores file "content" in separate files in export directory
5+
0.7.6 is a bug fix release, including:
6+
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)
2019

2120
If you're upgrading from an older version of Roundup you *must* follow
2221
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.5 2004-06-24 07:59:56 richard Exp $
18+
# $Id: __init__.py,v 1.30.2.6 2004-07-20 04:49:10 richard Exp $
1919

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

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

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

0 commit comments

Comments
 (0)