Skip to content

Commit a6545fe

Browse files
author
Richard Jones
committed
pre-release stuff
1 parent 3bcda1a commit a6545fe

File tree

3 files changed

+36
-10
lines changed

3 files changed

+36
-10
lines changed

CHANGES.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
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-
2008-??-?? 1.4.5
4+
2008-08-19 1.4.5
55
Feature:
66
- Add use of username/password stored in ~/.netrc in mailgw (sf patch
77
#1912105)
88

99
Fixed:
1010
- 'Make a Copy' failed with more than one person in nosy list (sf #1906147)
1111
- xml-rpc security checks and tests across all backends (sf #1907211)
12-
- Send a Precedence header in email so autoresponders don't
13-
- Fix mailgw total failure bounce message generation (thanks Bradley Dean)
12+
- Send a Precedence header in email so (well-written) autoresponders don't
13+
- Fix mailgw total failure bounce message generation (thanks Bradley Dean)
1414
- Fix for postgres 8.3 compatibility (and bug) (sf patch #2030479 and bug
1515
#1959261)
1616
- Fix for translations (sf patch #2032526)
@@ -19,9 +19,9 @@ Fixed:
1919
- Better German translation for retiring users (sf #1998701)
2020
- More improvements to German translation (sf #1919446)
2121
- Add filter() to XML-RPC interface (sf patch #1966456)
22-
- Fix indexerror when there are no messages to an issue (sf patch #1894249)
22+
- Fix IndexError when there are no messages to an issue (sf patch #1894249)
2323
- Prevent broken pipe errors in csv export (sf patch #1911449)
24-
- Session API and cleanup thanks anatoly t.
24+
- New session API and cleanup thanks anatoly t.
2525
- Make WSGI handler threadsafe (sf #1968027)
2626
- Improved URL matching RE (sf #2038858)
2727
- Allow binary file content submission via XML-RPC (sf #1995623)

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.51 2008-03-01 08:18:06 richard Exp $
18+
# $Id: __init__.py,v 1.52 2008-08-19 01:25:16 richard Exp $
1919

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

71-
__version__ = '1.4.4'
71+
__version__ = '1.4.5'
7272

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

setup.py

Lines changed: 29 additions & 3 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.102 2008-03-01 08:18:06 richard Exp $
19+
# $Id: setup.py,v 1.103 2008-08-19 01:25:16 richard Exp $
2020

2121
from distutils.core import setup, Extension
2222
from distutils.util import get_platform
@@ -352,8 +352,34 @@ def main():
352352
'''In this release
353353
===============
354354
355-
1.4.4 is a security fix release. All installations of Roundup are strongly
356-
encouraged to update.
355+
1.4.5 has one new feature:
356+
357+
- Add use of username/password stored in ~/.netrc in mailgw (sf patch
358+
#1912105)
359+
360+
It is otherwise mostly a bugfix release:
361+
362+
- 'Make a Copy' failed with more than one person in nosy list (sf #1906147)
363+
- xml-rpc security checks and tests across all backends (sf #1907211)
364+
- Send a Precedence header in email so (well-written) autoresponders don't
365+
- Fix mailgw total failure bounce message generation (thanks Bradley Dean)
366+
- Fix for postgres 8.3 compatibility (and bug) (sf patch #2030479 and bug
367+
#1959261)
368+
- Fix for translations (sf patch #2032526)
369+
- Fire reactors after file storage is all done (sf patch #2001243)
370+
- Allow negative ids other than -1 for item generation (sf patch #1982481)
371+
- Better German translation for retiring users (sf #1998701)
372+
- More improvements to German translation (sf #1919446)
373+
- Add filter() to XML-RPC interface (sf patch #1966456)
374+
- Fix IndexError when there are no messages to an issue (sf patch #1894249)
375+
- Prevent broken pipe errors in csv export (sf patch #1911449)
376+
- New session API and cleanup thanks anatoly t.
377+
- Make WSGI handler threadsafe (sf #1968027)
378+
- Improved URL matching RE (sf #2038858)
379+
- Allow binary file content submission via XML-RPC (sf #1995623)
380+
- Don't run old code on newer database (sf #1979556)
381+
- Fix HTML injection into page title
382+
- Fix indexer handling of indexed Link properties (sf #1936876)
357383
358384
If you're upgrading from an older version of Roundup you *must* follow
359385
the "Software Upgrade" guidelines given in the maintenance documentation.

0 commit comments

Comments
 (0)