Skip to content

Commit 973019a

Browse files
author
Ralf Schlatterbeck
committed
- everything needed for release
1 parent da4c272 commit 973019a

File tree

4 files changed

+40
-32
lines changed

4 files changed

+40
-32
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-
2009-xx-xx 1.4.X
4+
2009-10-09 1.4.10 (r4374)
55

66
Fixes:
77
- Minor update of doc/developers.txt to point to the new resources

doc/announcement.txt

Lines changed: 20 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,23 @@
1-
I'm proud to release version 1.4.9 of Roundup which fixes some bugs:
2-
3-
- fixed action taken in response to invalid GET request
4-
- fixed classic tracker template to submit POST requests when appropriate
5-
- fix problems with french and german locale files (issue 2550546)
6-
- Run each message of the mail-gateway in a separate transaction,
7-
see http://thread.gmane.org/gmane.comp.bug-tracking.roundup.user/9500
8-
- fix problem with bounce-message if incoming mail has insufficient
9-
privilege, e.g., user not existing (issue 2550534)
10-
- fix construction of individual messages to nosy recipents with
11-
attachments (issue 2550568)
12-
- re-order sqlite imports to handle multiple installed versions (issue
13-
2550570)
14-
- don't show entire history by default
15-
(fixes http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=540629)
16-
- remove use of string exception
1+
I'm proud to release version 1.4.10 of Roundup which fixes some bugs:
2+
3+
- Minor update of doc/developers.txt to point to the new resources
4+
on www.roundup-tracker.org (Bernhard Reiter)
5+
- Small CSS improvements regaring the search box (thanks Thomas Arendsan Hein)
6+
(issue 2550589)
7+
- Indexers behaviour made more consistent regarding length of indexed words
8+
and stopwords (thanks Thomas Arendsen Hein, Bernhard Reiter)(issue 2550584)
9+
- fixed typos in the installation instructions (thanks Thomas Arendsen Hein)
10+
(issue 2550573)
11+
- New config option csv_field_size: Pythons csv module (which is used
12+
for export/import) has a new field size limit starting with python2.5.
13+
We now issue a warning during export if the limit is too small and use
14+
the csv_field_size configuration during import to set the limit for
15+
the csv module.
16+
- Small fix for CGI-handling of XMLRPC requests for python2.4, this
17+
worked only for 2.5 and beyond due to a change in the xmlrpc interface
18+
in python
19+
- Document filter method of xmlrpc interface
20+
- Fix interaction of SSL and XMLRPC, now XMLRPC works with SSL
1721

1822
If you're upgrading from an older version of Roundup you *must* follow
1923
the "Software Upgrade" guidelines given in the maintenance documentation.

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.9'
71+
__version__ = '1.4.10'
7272

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

setup.py

Lines changed: 18 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -103,20 +103,24 @@ def main():
103103
" customisable.",
104104
long_description='''This version of Roundup fixes some bugs:
105105
106-
- fixed action taken in response to invalid GET request
107-
- fixed classic tracker template to submit POST requests when appropriate
108-
- fix problems with french and german locale files (issue 2550546)
109-
- Run each message of the mail-gateway in a separate transaction,
110-
see http://thread.gmane.org/gmane.comp.bug-tracking.roundup.user/9500
111-
- fix problem with bounce-message if incoming mail has insufficient
112-
privilege, e.g., user not existing (issue 2550534)
113-
- fix construction of individual messages to nosy recipents with
114-
attachments (issue 2550568)
115-
- re-order sqlite imports to handle multiple installed versions (issue
116-
2550570)
117-
- don't show entire history by default
118-
(fixes http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=540629)
119-
- remove use of string exception
106+
- Minor update of doc/developers.txt to point to the new resources
107+
on www.roundup-tracker.org (Bernhard Reiter)
108+
- Small CSS improvements regaring the search box (thanks Thomas Arendsan Hein)
109+
(issue 2550589)
110+
- Indexers behaviour made more consistent regarding length of indexed words
111+
and stopwords (thanks Thomas Arendsen Hein, Bernhard Reiter)(issue 2550584)
112+
- fixed typos in the installation instructions (thanks Thomas Arendsen Hein)
113+
(issue 2550573)
114+
- New config option csv_field_size: Pythons csv module (which is used
115+
for export/import) has a new field size limit starting with python2.5.
116+
We now issue a warning during export if the limit is too small and use
117+
the csv_field_size configuration during import to set the limit for
118+
the csv module.
119+
- Small fix for CGI-handling of XMLRPC requests for python2.4, this
120+
worked only for 2.5 and beyond due to a change in the xmlrpc interface
121+
in python
122+
- Document filter method of xmlrpc interface
123+
- Fix interaction of SSL and XMLRPC, now XMLRPC works with SSL
120124
121125
If you're upgrading from an older version of Roundup you *must* follow
122126
the "Software Upgrade" guidelines given in the maintenance documentation.

0 commit comments

Comments
 (0)