Skip to content

Commit 8f846ca

Browse files
author
Richard Jones
committed
release stuff
1 parent c54cef4 commit 8f846ca

File tree

4 files changed

+28
-45
lines changed

4 files changed

+28
-45
lines changed

CHANGES.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
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-
2009-03-?? 1.4.8
4+
2009-03-18 1.4.8 (r4209)
55

66
Fixes:
7-
- bug introduced into CVS export and view
7+
- bug introduced into hyperdb filter (issue 2550505)
8+
- bug introduced into CVS export and view (issue 2550529)
89
- bugs introduced in the migration to the email package (issue 2550531)
910
- handle bogus pagination values (issue 2550530)
1011
- fix TLS handling with some SMTP servers (issues 2484879 and 1912923)

doc/announcement.txt

Lines changed: 13 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,16 @@
1-
I'm proud to release version 1.4.7 of Roundup.
2-
3-
1.4.7 is primarily a bugfix release which contains important security
4-
fixes:
5-
6-
- a number of security issues were discovered by Daniel Diniz
7-
- EditCSV and ExportCSV altered to include permission checks
8-
- HTTP POST required on actions which alter data
9-
- HTML file uploads served as application/octet-stream
10-
- Handle Unauthorised in file serving correctly
11-
- New item action reject creation of new users
12-
- Item retirement was not being controlled
13-
- Roundup is now compatible with Python 2.6
14-
- Improved French and German translations
15-
- Improve consistency of item sorting in HTML interface
16-
- Various other small bug fixes, robustification and optimisation
1+
I'm proud to release version 1.4.8 of Roundup.
2+
3+
This release fixes some regressions:
4+
5+
- bug introduced into hyperdb filter (issue 2550505)
6+
- bug introduced into CVS export and view (issue 2550529)
7+
- bugs introduced in the migration to the email package (issue 2550531)
8+
9+
And adds a couple of other fixes:
10+
11+
- handle bogus pagination values (issue 2550530)
12+
- fix TLS handling with some SMTP servers (issues 2484879 and 1912923)
13+
1714

1815
Though some new features made it in also:
1916

roundup/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,6 @@
6868
'''
6969
__docformat__ = 'restructuredtext'
7070

71-
__version__ = '1.4.7'
71+
__version__ = '1.4.8'
7272

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

setup.py

Lines changed: 11 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -101,32 +101,17 @@ def main():
101101
description="A simple-to-use and -install issue-tracking system"
102102
" with command-line, web and e-mail interfaces. Highly"
103103
" customisable.",
104-
long_description='''In this release
105-
===============
106-
107-
1.4.7 is primarily a bugfix release which contains important security
108-
fixes:
109-
110-
- a number of security issues were discovered by Daniel Diniz
111-
- EditCSV and ExportCSV altered to include permission checks
112-
- HTTP POST required on actions which alter data
113-
- HTML file uploads served as application/octet-stream
114-
- Handle Unauthorised in file serving correctly
115-
- New item action reject creation of new users
116-
- Item retirement was not being controlled
117-
- Roundup is now compatible with Python 2.6
118-
- Improved French and German translations
119-
- Improve consistency of item sorting in HTML interface
120-
- Various other small bug fixes, robustification and optimisation
121-
122-
Though some new features made it in also:
123-
124-
- Provide a "no selection" option in web interface selection widgets
125-
- Debug logging now uses the logging module rather than print
126-
- Allow CGI frontend to serve XMLRPC requests.
127-
- Added XMLRPC actions, as well as bridging CGI actions to XMLRPC actions.
128-
- Optimized large file serving via mod_python / sendfile().
129-
- Support resuming downloads for (large) files.
104+
long_description='''
105+
1.4.8 fixes some regressions:
106+
107+
- bug introduced into hyperdb filter (issue 2550505)
108+
- bug introduced into CVS export and view (issue 2550529)
109+
- bugs introduced in the migration to the email package (issue 2550531)
110+
111+
And adds a couple of other fixes:
112+
113+
- handle bogus pagination values (issue 2550530)
114+
- fix TLS handling with some SMTP servers (issues 2484879 and 1912923)
130115
131116
If you're upgrading from an older version of Roundup you *must* follow
132117
the "Software Upgrade" guidelines given in the maintenance documentation.

0 commit comments

Comments
 (0)