Mercurial > p > roundup > code
changeset 3795:0f79712460ec 1.3.2
pre-release stuff
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Tue, 19 Dec 2006 03:03:37 +0000 |
| parents | f5ddd1639a15 |
| children | aef19fff38dd |
| files | CHANGES.txt doc/announcement.txt roundup/__init__.py setup.py |
| diffstat | 4 files changed, 33 insertions(+), 13 deletions(-) [+] |
line wrap: on
line diff
--- a/CHANGES.txt Tue Dec 19 03:01:37 2006 +0000 +++ b/CHANGES.txt Tue Dec 19 03:03:37 2006 +0000 @@ -2,7 +2,7 @@ are given with the most recent entry first. -2006-??-?? 1.3.2 +2006-12-19 1.3.2 Fixed: - relax rules for required fields in form_parser.py (sf bug 1599740) - documentation cleanup from Luke Ross (sf patch 1594860)
--- a/doc/announcement.txt Tue Dec 19 03:01:37 2006 +0000 +++ b/doc/announcement.txt Tue Dec 19 03:03:37 2006 +0000 @@ -1,10 +1,20 @@ -I'm proud to release version 1.3.1 of Roundup. +I'm proud to release version 1.3.2 of Roundup. -Fixed in 1.3.1: +Fixed in 1.3.2: -- setup.py had broken reference to roundup.cgi (sf bug 1593573) -- full-text search wasn't coping with multiple multilinks to the same class -- unicode / sqlite 3 problem (sf bug 1589292) +- relax rules for required fields in form_parser.py (sf bug 1599740) +- documentation cleanup from Luke Ross (sf patch 1594860) +- updated Spanish translation from Ramiro Morales (sf patch 1594718) +- handle 8-bit untranslateable messages in tracker templates +- handling of required for boolean False and numeric 0 (sf bug 1608200) +- removed bogus args attr of ConfigurationError (sf bug 1608056) +- implemented start_response in roundup.cgi (sf bug 1604304) +- clarified windows service documentation (sf patch 1597713) +- HTMLClass fixed to work with new item permissions check (sf bug 1602983) +- support POP over SSL (sf patch 1597703) +- clean up input field generation and quoting of values (sf bug 1615616) +- allow use of roundup-server pidfile without forking (sf bug 1614753) +- allow translation of status/priority menu options (sf bug 1613976) New Features in 1.3.0:
--- a/roundup/__init__.py Tue Dec 19 03:01:37 2006 +0000 +++ b/roundup/__init__.py Tue Dec 19 03:03:37 2006 +0000 @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: __init__.py,v 1.44 2006-11-10 03:29:37 richard Exp $ +# $Id: __init__.py,v 1.45 2006-12-19 03:03:37 richard Exp $ '''Roundup - issue tracking for knowledge workers. @@ -68,6 +68,6 @@ ''' __docformat__ = 'restructuredtext' -__version__ = '1.3.1' +__version__ = '1.3.2' # vim: set filetype=python ts=4 sw=4 et si
--- a/setup.py Tue Dec 19 03:01:37 2006 +0000 +++ b/setup.py Tue Dec 19 03:03:37 2006 +0000 @@ -16,7 +16,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: setup.py,v 1.95 2006-11-11 03:23:45 richard Exp $ +# $Id: setup.py,v 1.96 2006-12-19 03:03:36 richard Exp $ from distutils.core import setup, Extension from distutils.util import get_platform @@ -347,11 +347,21 @@ '''In this release =============== -Fixed in 1.3.1: +Fixed in 1.3.2: -- setup.py had broken reference to roundup.cgi (sf bug 1593573) -- full-text search wasn't coping with multiple multilinks to the same class -- unicode / sqlite 3 problem (sf bug 1589292) +- relax rules for required fields in form_parser.py (sf bug 1599740) +- documentation cleanup from Luke Ross (sf patch 1594860) +- updated Spanish translation from Ramiro Morales (sf patch 1594718) +- handle 8-bit untranslateable messages in tracker templates +- handling of required for boolean False and numeric 0 (sf bug 1608200) +- removed bogus args attr of ConfigurationError (sf bug 1608056) +- implemented start_response in roundup.cgi (sf bug 1604304) +- clarified windows service documentation (sf patch 1597713) +- HTMLClass fixed to work with new item permissions check (sf bug 1602983) +- support POP over SSL (sf patch 1597703) +- clean up input field generation and quoting of values (sf bug 1615616) +- allow use of roundup-server pidfile without forking (sf bug 1614753) +- allow translation of status/priority menu options (sf bug 1613976) New Features in 1.3.0:
