Skip to content

Commit ef7fa0a

Browse files
author
Richard Jones
committed
pre-release stuff
1 parent 3e45fbd commit ef7fa0a

File tree

4 files changed

+59
-27
lines changed

4 files changed

+59
-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-10-?? 0.7.9
4+
2004-10-26 0.7.9
55
Feature:
66
- DateHTMLProperty.field() accepts format string (thanks Wil Cooley)
77

doc/announcement.txt

Lines changed: 27 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,34 @@ 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.8 is a bug fix release, patching a problem in the 0.7.7 release:
5+
0.7.9 is a bug fix release (with one feature cleaning up and API
6+
inconsistency):
67

7-
- Clean out sessions / otks tables when migrating
8+
Feature:
9+
- DateHTMLProperty.field() accepts format string (thanks Wil Cooley)
10+
11+
Fixed:
12+
- popup listing uses filter args (thanks Marlon van den Berg)
13+
- fixed editing of message contents
14+
- loosened the detection of issue cross-references in messages
15+
- open CSV files in "universal newline" mode
16+
- s/Modifed/Modified (thanks donfu)
17+
- applied patch fixing some form handling issues in ZRoundup (thanks Chris
18+
Withers)
19+
- enforce View Permission when serving file content (sf bug 1050470)
20+
- don't index common words (sf bug 1046612)
21+
- set the current username correctly after rego (sf bug 1048398)
22+
- don't wrap query.item.html in a <span> (thanks Roch'e Compaan)
23+
- TAL expressions like 'request/show/whatever' return True
24+
if the request does not contain explicit @columns list
25+
- NumberHTMLProperty should return '' not "None" if not set (thanks
26+
William)
27+
- ensure multilink ordering in RDBMS backends (thanks Marcus Priesch, sf
28+
bug 950963)
29+
- always honor indexme property on Strings (sf patch 1063711)
30+
- make hyperdb value parsing errors readable in mailgw errors
31+
- make anydbm journal export handle removed properties
32+
- allow use of XML templates again
833

934
If you're upgrading from an older version of Roundup you *must* follow
1035
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.8 2004-10-14 22:28:02 richard Exp $
18+
# $Id: __init__.py,v 1.30.2.9 2004-11-26 00:02: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.8'
71+
__version__ = '0.7.9'
7272

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

setup.py

Lines changed: 29 additions & 22 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.8 2004-10-11 05:25:46 richard Exp $
19+
# $Id: setup.py,v 1.64.2.9 2004-11-26 00:02:56 richard Exp $
2020

2121
from distutils.core import setup, Extension
2222
from distutils.util import get_platform
@@ -217,27 +217,34 @@ 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-
This is a bug fix release, including:
221-
222-
- ZRoundup's search interface works now (sf bug 994957)
223-
- fixed history display when "ascending"
224-
- removed references to py2.3+ boolean values (sf bug 995682)
225-
- fix static file path normalisation in security check (thanks David Linke)
226-
- less specific messages for login failures (thanks Chris Withers)
227-
- Reject raised against email messages should result in email rejection, not
228-
discarding of the message
229-
- mailgw can override the MAIL_DEFAULT_CLASS
230-
- handle Py2.3+ datetime objects as Date specs (sf bug 971300)
231-
- use row locking in MySQL newid() (sf bug 1034211)
232-
- add sanity check for sort and group on same property (sf bug 1033477)
233-
- extend OTK and session table value cols to TEXT (sf bug 1031271)
234-
- fix lookup of REMOTE_USER (sf bug 1002923)
235-
- new Interval props weren't created properly in rdbms
236-
- date.Interval() now accepts an Interval as a spec (sf bug 1041266)
237-
- handle deleted properties in RDBMS history
238-
- apply timezone in correct direction in user input (sf bug 1013097)
239-
- more efficient find() in RDBMS (sf bug 1012781)
240-
- pydotorg-specific change to mailgw to handle bizzaro permissions ;)
220+
This is a bug fix release (with one feature cleaning up and API
221+
inconsistency):
222+
223+
Feature:
224+
- DateHTMLProperty.field() accepts format string (thanks Wil Cooley)
225+
226+
Fixed:
227+
- popup listing uses filter args (thanks Marlon van den Berg)
228+
- fixed editing of message contents
229+
- loosened the detection of issue cross-references in messages
230+
- open CSV files in "universal newline" mode
231+
- s/Modifed/Modified (thanks donfu)
232+
- applied patch fixing some form handling issues in ZRoundup (thanks Chris
233+
Withers)
234+
- enforce View Permission when serving file content (sf bug 1050470)
235+
- don't index common words (sf bug 1046612)
236+
- set the current username correctly after rego (sf bug 1048398)
237+
- don't wrap query.item.html in a <span> (thanks Roch'e Compaan)
238+
- TAL expressions like 'request/show/whatever' return True
239+
if the request does not contain explicit @columns list
240+
- NumberHTMLProperty should return '' not "None" if not set (thanks
241+
William)
242+
- ensure multilink ordering in RDBMS backends (thanks Marcus Priesch, sf
243+
bug 950963)
244+
- always honor indexme property on Strings (sf patch 1063711)
245+
- make hyperdb value parsing errors readable in mailgw errors
246+
- make anydbm journal export handle removed properties
247+
- allow use of XML templates again
241248
''',
242249
author = "Richard Jones",
243250
author_email = "[email protected]",

0 commit comments

Comments
 (0)