Skip to content

Commit 8f0c738

Browse files
author
Richard Jones
committed
pre-release stuff
1 parent cc463a4 commit 8f0c738

File tree

3 files changed

+24
-39
lines changed

3 files changed

+24
-39
lines changed

doc/announcement.txt

Lines changed: 9 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,14 @@
1-
I'm pleased to announce this maintenance release of Roundup which fixes
1+
I'm pleased to announce Roundup 0.6.6, a maintenance release which fixes
22
some bugs:
33

4-
- mailgw handles of subject-line errors better
5-
- allow serving of FileClass file content when the class isn't called
6-
"file" (eg. messages and other FileClasses)
7-
- allowed negative ids (ie. new item markers) in HTMLClass.getItem,
8-
allowing "db/file_with_status/-1/status/menu" to generate a useful
9-
widget
10-
- fixed content-type when templates are serving up xml (thanks Godefroid
11-
Chapelle)
12-
- fixed IE double-submit when it shouldn't (sf bug 842254)
13-
- fixed check for JS pop()/push() to make more general (sf bug 877504)
14-
- fix re-enabling queries (sf bug 861940)
15-
- use supplied content-type on file uploads before trying filename
16-
- fixed roundup-reminder script to use default schema (thanks Klamer
17-
Schutte)
18-
- fixed edit action / parsePropsFromForm to handle index-page edits better
19-
- safer logging from HTTP server (sf bug 896917)
4+
- fixed registration (sf bug 903283)
5+
- don't insert spaces into designators, it just confuses users (sf bug
6+
898087)
7+
- Eudora can't handle utf-8 headers. We love Eudora. (sf bug 900046)
8+
- fixed bug in args to new DateHTMLProperty in the local() method (sf bug
9+
901444)
10+
- also changed rego to not use a 302 during confirmation, as this seems to
11+
confuse some email clients or browsers
2012

2113
If you're upgrading from an older version of Roundup you *must* follow
2214
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.5 2004-01-07 22:44:44 richard Exp $
18+
# $Id: __init__.py,v 1.25.2.6 2004-02-24 23:41:32 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.5'
70+
__version__ = '0.6.6'
7171

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

setup.py

Lines changed: 13 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.55.2.6 2004-02-15 23:27:44 richard Exp $
19+
# $Id: setup.py,v 1.55.2.7 2004-02-24 23:41:30 richard Exp $
2020

2121
from distutils.core import setup, Extension
2222
from distutils.util import get_platform
@@ -150,7 +150,7 @@ def main():
150150
]
151151
installdatafiles = [
152152
('share/roundup/cgi-bin', ['cgi-bin/roundup.cgi']),
153-
]
153+
]
154154

155155
# install man pages on POSIX platforms
156156
if os.name == 'posix':
@@ -178,32 +178,25 @@ def main():
178178
# perform the setup action
179179
from roundup import __version__
180180
setup(
181-
name = "roundup",
181+
name = "roundup",
182182
version = __version__,
183183
description = "Roundup is a simple-to-use and -install "\
184184
"issue-tracking system with command-line, web and e-mail "\
185185
"interfaces.",
186-
long_description =
186+
long_description =
187187
'''Roundup is a simple-to-use and -install issue-tracking system with
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.5 release fixes some bugs:
192-
- mailgw handling of subject-line errors
193-
- allow serving of FileClass file content when the class isn't called
194-
"file" (eg. messages and other FileClasses)
195-
- allowed negative ids (ie. new item markers) in HTMLClass.getItem,
196-
allowing "db/file_with_status/-1/status/menu" to generate a useful
197-
widget
198-
- fixed content-type when templates are serving up xml (thanks Godefroid
199-
Chapelle)
200-
- fixed IE double-submit when it shouldn't (sf bug 842254)
201-
- fixed check for JS pop()/push() to make more general (sf bug 877504)
202-
- fix re-enabling queries (sf bug 861940)
203-
- use supplied content-type on file uploads before trying filename
204-
- fixed roundup-reminder script to use default schema (thanks Klamer Schutte)
205-
- fixed edit action / parsePropsFromForm to handle index-page edits better
206-
- safer logging from HTTP server (sf bug 896917)
191+
The 0.6.6 release fixes some bugs:
192+
- fixed registration (sf bug 903283)
193+
- don't insert spaces into designators, it just confuses users (sf bug
194+
898087)
195+
- Eudora can't handle utf-8 headers. We love Eudora. (sf bug 900046)
196+
- fixed bug in args to new DateHTMLProperty in the local() method (sf bug
197+
901444)
198+
- also changed rego to not use a 302 during confirmation, as this seems to
199+
confuse some email clients or browsers
207200
''',
208201
author = "Richard Jones",
209202
author_email = "[email protected]",

0 commit comments

Comments
 (0)