Code

pre-release changes
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Thu, 9 Jan 2003 22:59:20 +0000 (22:59 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Thu, 9 Jan 2003 22:59:20 +0000 (22:59 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1430 57a73879-2fb5-44c3-a270-3262357dd7e2

CHANGES.txt
doc/announcement.txt
roundup/__init__.py

index 7a13ff753836be69408b510804bcc1f35341f540..b3f355e587517294c2643ac20bb7bc77cc400aca 100644 (file)
@@ -1,7 +1,7 @@
 This file contains the changes to the Roundup system over time. The entries
 are given with the most recent entry first.
 
-2003-01-?? 0.5.4
+2003-01-10 0.5.4
 - key the templates cache off full path, not filename
 - implemented whole-database locking
 - hyperlinking of special text (url, email, item designator) in messages
@@ -19,6 +19,7 @@ are given with the most recent entry first.
   on "creation" field
 - display of saved queries is now performed correctly
 
+
 2002-12-11 0.5.3
 - added mention of how to give users multiple Roles
 - mention needed trailing "/" in TRACKER_WEB
index b09e0fbdc8072cc9abcce01df9f270200635c14b..fd2f052dd00f8fd2dfd865930bef0e30583d9249 100644 (file)
@@ -1,5 +1,5 @@
 =================================================
-SC-Track Roundup 0.5.3 - an issue tracking system
+SC-Track Roundup 0.5.4 - an issue tracking system
 =================================================
 
 This is a bugfix release for version 0.5.x - if you're upgrading from before
@@ -13,27 +13,22 @@ sqlite backend are encouraged to upgrade sqlite to version 2.7.3.
 
 We've had a good crack at bugs (thanks to all who contributed!):
 
-- added mention of how to give users multiple Roles
-- mention needed trailing "/" in TRACKER_WEB
-- fixed upgrading doc to have CGI changes in the correct order
-- fixed double-close of anydbm backend (sf bug 639030)
-- removed use of string/strop from TAL/TALInterpreter
-- handle KeyboardInterrupt nicely
-- fixed Date and Interval form value handling
-- fixed Date.local()
-- email quoted text stripping is controllable again (sf bug 650742)
-- extract attachment name from content-disposition if name is missing (sf
-  bug 637278)
-- removed FILTER_POSITION from bundled configs
-- reverse message listing in issue display (reversion of recent change)
-- bad entries for multilink editing in cgi don't traceback now (sf bug 640310)
-- detect and break email loops (sf bug 640854)
-- finished of handling of retired flag in filter() (sf bug 635260)
-- allow StringHTMLProperty in MultilinkHTMLProperty test to work
-- don't set explicit None Link properties in web create
-- fixed nasty sorting bug that was lowercasing properties
-- allow multiple :remove and :add elements per property being edited
-- added date header to emails (sf bug 651358)
+- key the templates cache off full path, not filename
+- implemented whole-database locking
+- hyperlinking of special text (url, email, item designator) in messages
+- fixed time default in date.py
+- fixed error in cgi/templates.py (sf bug 652089)
+- fixed handling of missing password (sf bug 655632)
+- applied patches for handling Outlook quirks (thanks Andrey Lebedev)
+  (multipart/alternative, "fw" and content-type "name")
+- fire auditors and reactors in rdbms retire (thanks Sheila King)
+- better match for mailgw help "command" text
+- handle :add: better in cgi form parsing (sf bug 663235)
+- handle all-whitespace multilink values in forms (sf bug 663855)
+- fixed searching on date / interval fields (sf bug 658157)
+- fixed form elements names in search form to allow grouping and sorting 
+  on "creation" field
+- display of saved queries is now performed correctly
 
 Source and documentation is available at the website:
      http://roundup.sourceforge.net/
index 9935146fe39af1b47adb8e6087e84597cb1ac5da..65418fad4ddff5e31910353ea3984039f5fcbfe2 100644 (file)
@@ -15,7 +15,7 @@
 # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
 # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
 # 
-# $Id: __init__.py,v 1.17 2002-12-10 00:11:14 richard Exp $
+# $Id: __init__.py,v 1.18 2003-01-09 22:59:20 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.3'
+__version__ = '0.5.4'
 
 # vim: set filetype=python ts=4 sw=4 et si