Skip to content

Commit 0e222a6

Browse files
author
Richard Jones
committed
pre-release stuff
1 parent 98550d5 commit 0e222a6

File tree

3 files changed

+26
-20
lines changed

3 files changed

+26
-20
lines changed

doc/announcement.txt

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,17 @@ 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.3 is a SECURITY FIX release of Roundup. All users are encouraged
6-
to upgrade immediately.
7-
8-
This release also fixes a few minor bugs:
9-
10-
- add "checked" to truth values for Boolean input
11-
- fixed import in metakit backend
12-
- fix SearchAction use of Class.filter(), and clarify API docs for same
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)
1316

1417
If you're upgrading from an older version of Roundup you *must* follow
1518
the "Software Upgrade" guidelines given in the maintenance documentation.
@@ -47,5 +50,5 @@ disutils-based install script is provided.
4750

4851
It comes with two issue tracker templates (a classic bug/feature tracker and
4952
a minimal skeleton) and seven database back-ends (anydbm, bsddb, bsddb3,
50-
sqlite, metakit, mysql and postgresql).
53+
sqlite, metakit, mysql and postgresql).
5154

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.3 2004-05-27 22:28:02 richard Exp $
18+
# $Id: __init__.py,v 1.30.2.4 2004-06-09 06:43:02 richard Exp $
1919

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

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

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

setup.py

Lines changed: 12 additions & 9 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.3 2004-05-27 22:17:23 richard Exp $
19+
# $Id: setup.py,v 1.64.2.4 2004-06-09 06:43:02 richard Exp $
2020

2121
from distutils.core import setup, Extension
2222
from distutils.util import get_platform
@@ -217,14 +217,17 @@ 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.3 is a SECURITY FIX release of Roundup. All users are encouraged
221-
to upgrade immediately.
222-
223-
This release also fixes a few minor bugs:
224-
225-
- add "checked" to truth values for Boolean input
226-
- fixed import in metakit backend
227-
- fix SearchAction use of Class.filter(), and clarify API docs for same
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)
228231
''',
229232
author = "Richard Jones",
230233
author_email = "[email protected]",

0 commit comments

Comments
 (0)