From: richard Date: Thu, 20 Feb 2003 07:11:39 +0000 (+0000) Subject: *** empty log message *** X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=2e667106ba172dfe4b3802e874ef5afadcb986a3;p=roundup.git *** empty log message *** git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1533 57a73879-2fb5-44c3-a270-3262357dd7e2 --- diff --git a/CHANGES.txt b/CHANGES.txt index e187920..b2008b5 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -56,6 +56,7 @@ are given with the most recent entry first. (e.g. images). They are accessible naturally: _file/images/img.gif - altered Class.create() and FileClass.create() methods to make "content" property available in auditors +- re-worked detectors initialisation - woohoo, no more cross-importing! 2003-??-?? 0.5.6 diff --git a/doc/upgrading.txt b/doc/upgrading.txt index 8b72223..9ba63c7 100644 --- a/doc/upgrading.txt +++ b/doc/upgrading.txt @@ -23,6 +23,14 @@ Migrating from 0.5 to 0.6 "Foo Bar EMAIL_FROM_TAG" +I've altered the mechanism in the detectors __init__.py module so that it +doesn't cross-import detectors from other trackers (if you run more than one +in a single roundup-server). This change means that you'll need to copy the +__init__.py from roundup/templates/classic/detectors/__init__.py to your +/detectors/__init__.py. Don't worry, the "classic" __init__ is a +one-size-fits-all, so it'll work even if you've added/removed detectors. + + 0.6.0 Form handling changes --------------------------- diff --git a/roundup/__init__.py b/roundup/__init__.py index 65418fa..e46226e 100644 --- a/roundup/__init__.py +++ b/roundup/__init__.py @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: __init__.py,v 1.18 2003-01-09 22:59:20 richard Exp $ +# $Id: __init__.py,v 1.19 2003-02-20 07:11:39 richard Exp $ ''' Roundup - issue tracking for knowledge workers. @@ -67,6 +67,6 @@ written by Ka-Ping Yee in the "doc" directory. If nothing else, it has a much prettier cake :) ''' -__version__ = '0.5.4' +__version__ = '0.6.0' # vim: set filetype=python ts=4 sw=4 et si