# HG changeset patch # User Richard Jones # Date 1194470664 0 # Node ID 553a27b25012660e7ad7dee407c9c0a47628135b # Parent 9997b941dd6d73373feb487dcd95094c6ea874bc pre-release diff -r 9997b941dd6d -r 553a27b25012 doc/announcement.txt --- a/doc/announcement.txt Wed Nov 07 20:47:12 2007 +0000 +++ b/doc/announcement.txt Wed Nov 07 21:24:24 2007 +0000 @@ -1,8 +1,11 @@ -I'm proud to release version 1.4.0 of Roundup. +I'm proud to release version 1.4.1 of Roundup. The metakit backend has been removed due to lack of maintenance and presence of good alternatives (in particular sqlite built into Python 2.5) +Release 1.4.1 removes an old trace of the metakit backend that was +preventing new tracker installation. + New Features in 1.4.0: - Roundup has a new xmlrpc frontend that gives access to a tracker using diff -r 9997b941dd6d -r 553a27b25012 roundup/__init__.py --- a/roundup/__init__.py Wed Nov 07 20:47:12 2007 +0000 +++ b/roundup/__init__.py Wed Nov 07 21:24:24 2007 +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.47 2007-11-03 00:56:52 richard Exp $ +# $Id: __init__.py,v 1.48 2007-11-07 21:24:24 richard Exp $ '''Roundup - issue tracking for knowledge workers. @@ -68,6 +68,6 @@ ''' __docformat__ = 'restructuredtext' -__version__ = '1.4.0' +__version__ = '1.4.1' # vim: set filetype=python ts=4 sw=4 et si diff -r 9997b941dd6d -r 553a27b25012 setup.py --- a/setup.py Wed Nov 07 20:47:12 2007 +0000 +++ b/setup.py Wed Nov 07 21:24:24 2007 +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.98 2007-11-03 00:56:51 richard Exp $ +# $Id: setup.py,v 1.99 2007-11-07 21:24:24 richard Exp $ from distutils.core import setup, Extension from distutils.util import get_platform @@ -355,6 +355,9 @@ The metakit backend has been removed due to lack of maintenance and presence of good alternatives (in particular sqlite built into Python 2.5) +Release 1.4.1 removes an old trace of the metakit backend that was +preventing new tracker installation. + New Features in 1.4.0: - Roundup has a new xmlrpc frontend that gives access to a tracker using