Skip to content

Commit a6fc3e8

Browse files
author
Richard Jones
committed
*** empty log message ***
1 parent 5de3a45 commit a6fc3e8

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

CHANGES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ are given with the most recent entry first.
5656
(e.g. images). They are accessible naturally: _file/images/img.gif
5757
- altered Class.create() and FileClass.create() methods to make "content"
5858
property available in auditors
59+
- re-worked detectors initialisation - woohoo, no more cross-importing!
5960

6061

6162
2003-??-?? 0.5.6

doc/upgrading.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,14 @@ Migrating from 0.5 to 0.6
2323

2424
"Foo Bar EMAIL_FROM_TAG" <[email protected]>
2525

26+
I've altered the mechanism in the detectors __init__.py module so that it
27+
doesn't cross-import detectors from other trackers (if you run more than one
28+
in a single roundup-server). This change means that you'll need to copy the
29+
__init__.py from roundup/templates/classic/detectors/__init__.py to your
30+
<tracker home>/detectors/__init__.py. Don't worry, the "classic" __init__ is a
31+
one-size-fits-all, so it'll work even if you've added/removed detectors.
32+
33+
2634
0.6.0 Form handling changes
2735
---------------------------
2836

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.18 2003-01-09 22:59:20 richard Exp $
18+
# $Id: __init__.py,v 1.19 2003-02-20 07:11:39 richard Exp $
1919

2020
''' Roundup - issue tracking for knowledge workers.
2121
@@ -67,6 +67,6 @@
6767
much prettier cake :)
6868
'''
6969

70-
__version__ = '0.5.4'
70+
__version__ = '0.6.0'
7171

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

0 commit comments

Comments
 (0)