Skip to content

Commit 0e3f552

Browse files
author
Richard Jones
committed
pre-release stuff
1 parent 529d12a commit 0e3f552

File tree

4 files changed

+35
-27
lines changed

4 files changed

+35
-27
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.5
4+
2004-06-24 0.7.5
55
Fixed:
66
- force lookup of journal props in anydbm filtering
77
- fixed lookup of "missing" Link values for new props in anydbm backend

doc/announcement.txt

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,21 @@ 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.4 is a bug fix release, including:
6-
7-
- re-acquire the OTK manager when we re-open the database
8-
- mailgw handler can close the database on us
9-
- fixed grouping by a NULL Link value
10-
- fixed anydbm import/export (sf bugs 965216, 964457, 964450)
11-
- fix python 2.3.3 strftime deprecation warning (sf patch 968398)
12-
- fix some column datatypes in postgresql and mysql (sf bugs 962611,
13-
959177 and 964231)
14-
- fixed RDBMS journal packing (sf bug 959177)
15-
- fixed filtering by floats in anydbm (sf bug 963584)
16-
- fixed mysql upgrading of journals (sf bug 950410)
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
1720

1821
If you're upgrading from an older version of Roundup you *must* follow
1922
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.4 2004-06-09 06:43:02 richard Exp $
18+
# $Id: __init__.py,v 1.30.2.5 2004-06-24 07:59:56 richard Exp $
1919

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

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

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

setup.py

Lines changed: 17 additions & 12 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.4 2004-06-09 06:43:02 richard Exp $
19+
# $Id: setup.py,v 1.64.2.5 2004-06-24 07:59:55 richard Exp $
2020

2121
from distutils.core import setup, Extension
2222
from distutils.util import get_platform
@@ -217,17 +217,22 @@ def main():
217217
If you're upgrading from an older version of Roundup you *must* follow
218218
the "Software Upgrade" guidelines given in the maintenance documentation.
219219
220-
0.7.4 is a bug fix release, including:
221-
222-
- re-acquire the OTK manager when we re-open the database
223-
- mailgw handler can close the database on us
224-
- fixed grouping by a NULL Link value
225-
- fixed anydbm import/export (sf bugs 965216, 964457, 964450)
226-
- fix python 2.3.3 strftime deprecation warning (sf patch 968398)
227-
- fix some column datatypes in postgresql and mysql (sf bugs 962611,
228-
959177 and 964231)
229-
- fixed RDBMS journal packing (sf bug 959177)
230-
- fixed filtering by floats in anydbm (sf bug 963584)
220+
0.7.5 is a bug fix release, including:
221+
222+
- force lookup of journal props in anydbm filtering
223+
- fixed lookup of "missing" Link values for new props in anydbm backend
224+
- allow list of values for id, Number and Boolean filtering in anydbm
225+
backend
226+
- fixed some more mysql 0.6->0.7 upgrade bugs (sf bug 950410)
227+
- fixed Boolean values in postgresql (sf bugs 972546 and 972600)
228+
- fixed -g arg to roundup-server (sf bug 973946)
229+
- better roundup-server usage string (sf bug 973352)
230+
- include "context" always, as documented (sf bug 965447)
231+
- fixed REMOTE_USER (external HTTP Basic auth) (sf bug 977309)
232+
- fixed roundup-admin "find" to use better value parsing
233+
- fixed RDBMS Class.find() to handle None value in multiple find
234+
- export now stores file "content" in separate files in export directory
235+
231236
''',
232237
author = "Richard Jones",
233238
author_email = "[email protected]",

0 commit comments

Comments
 (0)