Skip to content

Commit 009c77a

Browse files
author
Richard Jones
committed
Pre-release stuff
1 parent f3778b6 commit 009c77a

File tree

5 files changed

+62
-36
lines changed

5 files changed

+62
-36
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-
2007-??-??
4+
2007-11-03 1.4.0
55
Feature:
66
- Roundup has a new xmlrpc frontend that gives access to a tracker using
77
XMLRPC.

doc/announcement.txt

Lines changed: 28 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,31 @@
1-
I'm proud to release version 1.3.3 of Roundup.
2-
3-
Fixed in 1.3.3:
4-
5-
- If-Modified-Since handling was broken
6-
- Updated documentation for customising hard-coded searches in page.html
7-
- Updated Windows installation docs (thanks Bo Berglund)
8-
- Handle rounding of seconds generating invalid date values
9-
- Handle 8-bit untranslateable messages from database properties
10-
- Fix scripts/roundup-reminder date calculation (sf bug 1649979)
11-
- Improved due_date and timelog customisation docs (sf bug 1625124)
12-
13-
New Features in 1.3.0:
14-
15-
- WSGI support via roundup.cgi.wsgi_handler
1+
I'm proud to release version 1.4.0 of Roundup.
2+
3+
The metakit backend has been removed due to lack of maintenance and
4+
presence of good alternatives (in particular sqlite built into Python 2.5)
5+
6+
New Features in 1.4.0:
7+
8+
- Roundup has a new xmlrpc frontend that gives access to a tracker using
9+
XMLRPC.
10+
- Dates can now be in the year-range 1-9999
11+
- Add simple anti-spam recipe to docs
12+
- Allow customisation of regular expressions used in email parsing, thanks
13+
Bruno Damour
14+
- Italian translation by Marco Ghidinelli
15+
- Multilinks take any iterable
16+
- config option: specify port and local hostname for SMTP connections
17+
- Tracker index templating (i.e. when roundup_server is serving multiple
18+
trackers) (sf bug 1058020)
19+
- config option: Limit nosy attachments based on size (Philipp Gortan)
20+
- roundup_server supports SSL via pyopenssl
21+
- templatable 404 not found messages (sf bug 1403287)
22+
- Unauthorized email includes a link to the registration page for
23+
the tracker
24+
- config options: control whether author info/email is included in email
25+
sent by roundup
26+
- support for receiving OpenPGP MIME messages (signed or encrypted)
27+
28+
There's also a ton of bugfixes.
1629

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

doc/upgrading.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ steps.
1313

1414
.. contents::
1515

16-
Migrating from 1.3.3 to 1.3.4
16+
Migrating from 1.3.3 to 1.4.0
1717
=============================
1818

1919
Value of the "refwd_re" tracker configuration option (section "mailgw")

roundup/__init__.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
# FOR A PARTICULAR PURPOSE. THE CODE PROVIDED HEREUNDER IS ON AN "AS IS"
1515
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1616
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
17-
#
18-
# $Id: __init__.py,v 1.46 2007-02-15 04:02:43 richard Exp $
17+
#
18+
# $Id: __init__.py,v 1.47 2007-11-03 00:56:52 richard Exp $
1919

2020
'''Roundup - issue tracking for knowledge workers.
2121
@@ -27,14 +27,14 @@
2727
new issues, (b) find and edit existing issues, and (c) discuss issues with
2828
other participants. The system will facilitate communication among the
2929
participants by managing discussions and notifying interested parties when
30-
issues are edited.
30+
issues are edited.
3131
3232
Roundup's structure is that of a cake::
3333
3434
_________________________________________________________________________
3535
| E-mail Client | Web Browser | Detector Scripts | Shell |
3636
|------------------+-----------------+----------------------+-------------|
37-
| E-mail User | Web User | Detector | Command |
37+
| E-mail User | Web User | Detector | Command |
3838
|-------------------------------------------------------------------------|
3939
| Roundup Database Layer |
4040
|-------------------------------------------------------------------------|
@@ -68,6 +68,6 @@
6868
'''
6969
__docformat__ = 'restructuredtext'
7070

71-
__version__ = '1.3.3'
71+
__version__ = '1.4.0'
7272

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

setup.py

Lines changed: 27 additions & 14 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.97 2007-02-15 04:02:43 richard Exp $
19+
# $Id: setup.py,v 1.98 2007-11-03 00:56:51 richard Exp $
2020

2121
from distutils.core import setup, Extension
2222
from distutils.util import get_platform
@@ -352,19 +352,32 @@ def main():
352352
'''In this release
353353
===============
354354
355-
Fixed in 1.3.3:
356-
357-
- If-Modified-Since handling was broken
358-
- Updated documentation for customising hard-coded searches in page.html
359-
- Updated Windows installation docs (thanks Bo Berglund)
360-
- Handle rounding of seconds generating invalid date values
361-
- Handle 8-bit untranslateable messages from database properties
362-
- Fix scripts/roundup-reminder date calculation (sf bug 1649979)
363-
- Improved due_date and timelog customisation docs (sf bug 1625124)
364-
365-
New Features in 1.3.0:
366-
367-
- WSGI support via roundup.cgi.wsgi_handler
355+
The metakit backend has been removed due to lack of maintenance and
356+
presence of good alternatives (in particular sqlite built into Python 2.5)
357+
358+
New Features in 1.4.0:
359+
360+
- Roundup has a new xmlrpc frontend that gives access to a tracker using
361+
XMLRPC.
362+
- Dates can now be in the year-range 1-9999
363+
- Add simple anti-spam recipe to docs
364+
- Allow customisation of regular expressions used in email parsing, thanks
365+
Bruno Damour
366+
- Italian translation by Marco Ghidinelli
367+
- Multilinks take any iterable
368+
- config option: specify port and local hostname for SMTP connections
369+
- Tracker index templating (i.e. when roundup_server is serving multiple
370+
trackers) (sf bug 1058020)
371+
- config option: Limit nosy attachments based on size (Philipp Gortan)
372+
- roundup_server supports SSL via pyopenssl
373+
- templatable 404 not found messages (sf bug 1403287)
374+
- Unauthorized email includes a link to the registration page for
375+
the tracker
376+
- config options: control whether author info/email is included in email
377+
sent by roundup
378+
- support for receiving OpenPGP MIME messages (signed or encrypted)
379+
380+
There's also a ton of bugfixes.
368381
369382
If you're upgrading from an older version of Roundup you *must* follow
370383
the "Software Upgrade" guidelines given in the maintenance documentation.

0 commit comments

Comments
 (0)