Skip to content

Commit 7c86000

Browse files
author
Richard Jones
committed
pre-release stuff
1 parent d9735f0 commit 7c86000

File tree

4 files changed

+14
-62
lines changed

4 files changed

+14
-62
lines changed

CHANGES.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ are given with the most recent entry first.
33

44
2008-09-01 1.4.6
55
Fixed:
6-
- Bug introduced in 1.4.5 in RDBMS full-text indexing
6+
- Fix bug introduced in 1.4.5 in RDBMS full-text indexing
77
- Make URL matching code less matchy
88

99

doc/announcement.txt

Lines changed: 6 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,9 @@
1-
I'm proud to release version 1.4.5.1 of Roundup.
2-
3-
1.4.5.1 has one new feature:
4-
5-
- Add use of username/password stored in ~/.netrc in mailgw (sf patch
6-
#1912105)
7-
8-
It is otherwise mostly a bugfix release:
9-
10-
- 'Make a Copy' failed with more than one person in nosy list (sf #1906147)
11-
- xml-rpc security checks and tests across all backends (sf #1907211)
12-
- Send a Precedence header in email so (well-written) autoresponders don't
13-
- Fix mailgw total failure bounce message generation (thanks Bradley Dean)
14-
- Fix for postgres 8.3 compatibility (and bug) (sf patch #2030479 and bug
15-
#1959261)
16-
- Fix for translations (sf patch #2032526)
17-
- Fire reactors after file storage is all done (sf patch #2001243)
18-
- Allow negative ids other than -1 for item generation (sf patch #1982481)
19-
- Better German translation for retiring users (sf #1998701)
20-
- More improvements to German translation (sf #1919446)
21-
- Add filter() to XML-RPC interface (sf patch #1966456)
22-
- Fix IndexError when there are no messages to an issue (sf patch #1894249)
23-
- Prevent broken pipe errors in csv export (sf patch #1911449)
24-
- New session API and cleanup thanks anatoly t.
25-
- Make WSGI handler threadsafe (sf #1968027)
26-
- Improved URL matching RE (sf #2038858)
27-
- Allow binary file content submission via XML-RPC (sf #1995623)
28-
- Don't run old code on newer database (sf #1979556)
29-
- Fix HTML injection into page title
30-
- Fix indexer handling of indexed Link properties (sf #1936876)
1+
I'm proud to release version 1.4.6 of Roundup.
2+
3+
1.4.6 is a bugfix release:
4+
5+
- Fix bug introduced in 1.4.5 in RDBMS full-text indexing
6+
- Make URL matching code less matchy
317

328
If you're upgrading from an older version of Roundup you *must* follow
339
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.53 2008-08-19 01:52:58 richard Exp $
18+
# $Id: __init__.py,v 1.54 2008-09-01 01:58:32 richard Exp $
1919

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

71-
__version__ = '1.4.5.1'
71+
__version__ = '1.4.6'
7272

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

setup.py

Lines changed: 5 additions & 29 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.104 2008-08-19 01:52:58 richard Exp $
19+
# $Id: setup.py,v 1.105 2008-09-01 01:58:32 richard Exp $
2020

2121
from distutils.core import setup, Extension
2222
from distutils.util import get_platform
@@ -352,34 +352,10 @@ def main():
352352
'''In this release
353353
===============
354354
355-
1.4.5.1 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)
355+
1.4.6 is a bugfix release:
356+
357+
- Fix bug introduced in 1.4.5 in RDBMS full-text indexing
358+
- Make URL matching code less matchy
383359
384360
If you're upgrading from an older version of Roundup you *must* follow
385361
the "Software Upgrade" guidelines given in the maintenance documentation.

0 commit comments

Comments
 (0)