Skip to content

Commit 38260e5

Browse files
author
Richard Jones
committed
pre-release stuff
1 parent dcc7052 commit 38260e5

File tree

4 files changed

+36
-16
lines changed

4 files changed

+36
-16
lines changed

CHANGES.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ This file contains the changes to the Roundup system over time. The entries
22
are given with the most recent entry first.
33

44

5-
2006-??-?? 1.3.2
5+
2006-12-19 1.3.2
66
Fixed:
77
- relax rules for required fields in form_parser.py (sf bug 1599740)
88
- documentation cleanup from Luke Ross (sf patch 1594860)

doc/announcement.txt

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,20 @@
1-
I'm proud to release version 1.3.1 of Roundup.
2-
3-
Fixed in 1.3.1:
4-
5-
- setup.py had broken reference to roundup.cgi (sf bug 1593573)
6-
- full-text search wasn't coping with multiple multilinks to the same class
7-
- unicode / sqlite 3 problem (sf bug 1589292)
1+
I'm proud to release version 1.3.2 of Roundup.
2+
3+
Fixed in 1.3.2:
4+
5+
- relax rules for required fields in form_parser.py (sf bug 1599740)
6+
- documentation cleanup from Luke Ross (sf patch 1594860)
7+
- updated Spanish translation from Ramiro Morales (sf patch 1594718)
8+
- handle 8-bit untranslateable messages in tracker templates
9+
- handling of required for boolean False and numeric 0 (sf bug 1608200)
10+
- removed bogus args attr of ConfigurationError (sf bug 1608056)
11+
- implemented start_response in roundup.cgi (sf bug 1604304)
12+
- clarified windows service documentation (sf patch 1597713)
13+
- HTMLClass fixed to work with new item permissions check (sf bug 1602983)
14+
- support POP over SSL (sf patch 1597703)
15+
- clean up input field generation and quoting of values (sf bug 1615616)
16+
- allow use of roundup-server pidfile without forking (sf bug 1614753)
17+
- allow translation of status/priority menu options (sf bug 1613976)
818

919
New Features in 1.3.0:
1020

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.44 2006-11-10 03:29:37 richard Exp $
18+
# $Id: __init__.py,v 1.45 2006-12-19 03:03:37 richard Exp $
1919

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

71-
__version__ = '1.3.1'
71+
__version__ = '1.3.2'
7272

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

setup.py

Lines changed: 16 additions & 6 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.95 2006-11-11 03:23:45 richard Exp $
19+
# $Id: setup.py,v 1.96 2006-12-19 03:03:36 richard Exp $
2020

2121
from distutils.core import setup, Extension
2222
from distutils.util import get_platform
@@ -347,11 +347,21 @@ def main():
347347
'''In this release
348348
===============
349349
350-
Fixed in 1.3.1:
351-
352-
- setup.py had broken reference to roundup.cgi (sf bug 1593573)
353-
- full-text search wasn't coping with multiple multilinks to the same class
354-
- unicode / sqlite 3 problem (sf bug 1589292)
350+
Fixed in 1.3.2:
351+
352+
- relax rules for required fields in form_parser.py (sf bug 1599740)
353+
- documentation cleanup from Luke Ross (sf patch 1594860)
354+
- updated Spanish translation from Ramiro Morales (sf patch 1594718)
355+
- handle 8-bit untranslateable messages in tracker templates
356+
- handling of required for boolean False and numeric 0 (sf bug 1608200)
357+
- removed bogus args attr of ConfigurationError (sf bug 1608056)
358+
- implemented start_response in roundup.cgi (sf bug 1604304)
359+
- clarified windows service documentation (sf patch 1597713)
360+
- HTMLClass fixed to work with new item permissions check (sf bug 1602983)
361+
- support POP over SSL (sf patch 1597703)
362+
- clean up input field generation and quoting of values (sf bug 1615616)
363+
- allow use of roundup-server pidfile without forking (sf bug 1614753)
364+
- allow translation of status/priority menu options (sf bug 1613976)
355365
356366
New Features in 1.3.0:
357367

0 commit comments

Comments
 (0)