Skip to content

Commit 4aa3fb9

Browse files
author
Richard Jones
committed
pre-release stuff
1 parent e48013e commit 4aa3fb9

File tree

3 files changed

+9
-37
lines changed

3 files changed

+9
-37
lines changed

CHANGES.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ This file contains the changes to the Roundup system over time. The entries
22
are given with the most recent entry first.
33

44

5-
2005-??-?? 0.8.1
5+
2005-02-17 0.8.1
66
Fixed:
77
- replaced MutlilinkIterator with multilinkGenerator (thanks Bob Ippolito)
88
- fixed broken csv import in roundup.admin module

doc/announcement.txt

Lines changed: 6 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -12,40 +12,12 @@ together a What's New page:
1212

1313
http://roundup.sourceforge.net/doc-0.8/whatsnew-0.8.html
1414

15-
This 0.8.0 release fixes some bugs in the previous beta releases:
16-
17-
- handle capitalisation of class names in text hyperlinking (sf bug
18-
1101043)
19-
- quote full-text search text in URL generation
20-
- fixed problem migrating mysql databases
21-
- fix search_checkboxes macro (sf patch 1113828)
22-
- fix bug in date editing in Metakit
23-
- allow suppression of search_text in indexargs_form (sf bug 1101548)
24-
- hack to fix some anydbm export problems (sf bug 1081454)
25-
- ignore AutoReply messages (sf patch 1085051)
26-
- fix ZRoundup syntax error (sf bug 1122335)
27-
- fix roundup-server log and PID file paths to be absolute
28-
- fix initialisation of roundup-server in daemon mode so initialisation
29-
errors are visible
30-
- fix: 'Logout' link was enabled on issue index page only
31-
- have Permissions only test the check function if itemid is suppled
32-
- modify cgi templating system to check item-level permissions in listings
33-
- enable batching in message and file listings
34-
- more documentation of security mechanisms (incl. sf patches 1117932,
35-
1117860)
36-
- better unit tests for security mechanisms
37-
- code cleanup (sf patch 1115329 and additional)
38-
- issue search page allows setting of no sorting / grouping (sf bug
39-
1119475)
40-
- better edit conflict handling (sf bug 1118790)
41-
- consistent text searching behaviour (AND everywhere) (sf bug 1101036)
42-
- fix handling of invalid date input (sf bug 1102165)
43-
- retain Boolean selections in edit error handling (sf bug 1101492)
44-
- fix initialisation of logging module from config file (sf bug 1108577)
45-
- removed rlog module (py 2.3 is minimum version now)
46-
- fixed class "help" listing paging (sf bug 1106329)
47-
- nicer error looking up values of None (response to sf bug 1108697)
48-
- fallback for (list) popups if javascript disabled (sf patch 1101626)
15+
This 0.8.1 release fixes some bugs:
16+
17+
- fixed broken csv import in roundup.admin module
18+
- fixed braino in HTMLClass.filter() (sf bug 1124213)
19+
- change ZTUtils Iterator to always iter() its sequence argument
20+
- replaced MutlilinkIterator with multilinkGenerator (thanks Bob Ippolito)
4921

5022
If you're upgrading from an older version of Roundup you *must* follow
5123
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.31.2.2 2005-02-16 00:29:17 richard Exp $
18+
# $Id: __init__.py,v 1.31.2.3 2005-02-16 22:11:34 richard Exp $
1919

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

71-
__version__ = '0.8.0'
71+
__version__ = '0.8.1'
7272

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

0 commit comments

Comments
 (0)