Skip to content

Commit d7eb231

Browse files
author
Richard Jones
committed
pre-release stuff
1 parent bdcaf7d commit d7eb231

File tree

4 files changed

+14
-28
lines changed

4 files changed

+14
-28
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.6.9
4+
2004-04-18 0.6.9
55
Fixed:
66
- paging in classhelp popup was broken
77
- socket timeout error logging can fail

doc/announcement.txt

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,10 @@
1-
I'm pleased to announce Roundup 0.6.8, a maintenance release which fixes
1+
I'm pleased to announce Roundup 0.6.9, a maintenance release which fixes
22
some bugs:
33

4-
- existing trackers (ie. live ones) may be used as templates for new
5-
trackers - the TEMPLATE-INFO.txt name entry has the tracker's dir name
6-
appended (so the demo tracker's template name is "classic-demo")
7-
- handle bad multilink input at item creation time better (sf bug 917834)
8-
- make sure email signature starts on a newline (sf bug 919759)
9-
- add line to rego email to help URL detection (sf bug 906247)
10-
- look harder for text/plain in email
11-
- fixed fallback excel writer in rcsv so it has a delimiter
12-
- fixed setup.py's use of listTemplates (!)
13-
- make rdbms serialise() less trusting
14-
- handle Boolean values in history HTML display
4+
- paging in classhelp popup was broken
5+
- socket timeout error logging can fail
6+
- hyperlink designators in message display (sf bug 931828)
7+
- don't match retired items in RDBMS stringFind
158

169
If you're upgrading from an older version of Roundup you *must* follow
1710
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.25.2.8 2004-04-01 00:07:35 richard Exp $
18+
# $Id: __init__.py,v 1.25.2.9 2004-04-18 06:38:22 richard Exp $
1919

2020
''' Roundup - issue tracking for knowledge workers.
2121
@@ -67,6 +67,6 @@
6767
much prettier cake :)
6868
'''
6969

70-
__version__ = '0.6.8'
70+
__version__ = '0.6.9'
7171

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

setup.py

Lines changed: 6 additions & 13 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.55.2.10 2004-04-01 00:15:55 richard Exp $
19+
# $Id: setup.py,v 1.55.2.11 2004-04-18 06:38:22 richard Exp $
2020

2121
from distutils.core import setup, Extension
2222
from distutils.util import get_platform
@@ -188,18 +188,11 @@ def main():
188188
command-line, web and e-mail interfaces. It is based on the winning design
189189
from Ka-Ping Yee in the Software Carpentry "Track" design competition.
190190
191-
The 0.6.8 release fixes some bugs:
192-
- existing trackers (ie. live ones) may be used as templates for new
193-
trackers - the TEMPLATE-INFO.txt name entry has the tracker's dir name
194-
appended (so the demo tracker's template name is "classic-demo")
195-
- handle bad multilink input at item creation time better (sf bug 917834)
196-
- make sure email signature starts on a newline (sf bug 919759)
197-
- add line to rego email to help URL detection (sf bug 906247)
198-
- look harder for text/plain in email
199-
- fixed fallback excel writer in rcsv so it has a delimiter
200-
- fixed setup.py's use of listTemplates (!)
201-
- make rdbms serialise() less trusting
202-
- handle Boolean values in history HTML display
191+
The 0.6.9 release fixes some bugs:
192+
- paging in classhelp popup was broken
193+
- socket timeout error logging can fail
194+
- hyperlink designators in message display (sf bug 931828)
195+
- don't match retired items in RDBMS stringFind
203196
''',
204197
author = "Richard Jones",
205198
author_email = "[email protected]",

0 commit comments

Comments
 (0)