Mercurial > p > roundup > code
changeset 1630:a05d205e919c maint-0.5 0.5.7
pre-release machinations
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Thu, 08 May 2003 07:08:38 +0000 |
| parents | 1bad1538f8d2 |
| children | 777125a21254 |
| files | BUILD.txt CHANGES.txt doc/announcement.txt roundup/__init__.py |
| diffstat | 4 files changed, 19 insertions(+), 26 deletions(-) [+] |
line wrap: on
line diff
--- a/BUILD.txt Sun Apr 27 02:31:30 2003 +0000 +++ b/BUILD.txt Thu May 08 07:08:38 2003 +0000 @@ -7,8 +7,8 @@ This means that we only need to ever build source releases. This is done by running: -1. Edit roundup/__init__.py and doc/announcement.txt to reflect the new - version and appropriate announcements. +1. Edit CHANGES.txt, roundup/__init__.py and doc/announcement.txt to reflect + the new version and appropriate announcements. 2. python setup.py clean --all 3. Edit setup.py to ensure that all information therein (version, contact information etc) is correct.
--- a/CHANGES.txt Sun Apr 27 02:31:30 2003 +0000 +++ b/CHANGES.txt Thu May 08 07:08:38 2003 +0000 @@ -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-??-?? 0.5.7 +2003-05-08 0.5.7 - fixed Interval maths (sf bug 665357) - fixed sqlite rollback/caching bug (sf bug 689383) - fixed rdbms table update detection logic (sf bug 703297)
--- a/doc/announcement.txt Sun Apr 27 02:31:30 2003 +0000 +++ b/doc/announcement.txt Thu May 08 07:08:38 2003 +0000 @@ -1,10 +1,6 @@ -================================================= -SC-Track Roundup 0.5.6 - an issue tracking system ================================================= - -Note: This releases fixes a serious bug in the sqlite and gadfly backends -which could cause data loss. Users are strongly encouraged to upgrade to this -version. +SC-Track Roundup 0.5.7 - an issue tracking system +================================================= This is a bugfix release for version 0.5.x - if you're upgrading from before 0.5, you *must* read doc/upgrading.txt! @@ -16,21 +12,18 @@ 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!): - -- fixed database corruption in rdbms property mutation -- fixed templating filter function arguments (sf bug 678911) -- fixed multiselect in searching (sf bug 676874) -- fixed parsing of content-disposition filenames (sf bug 675116) -- added 'h' to roundup-server optarg list (sf bug 674070) -- fixed doc for db.history in anydbm and rdbms_common (sf bug 679221) -- fixed roundup-reminder (sf bug 681042) -- fixed int assumptions about Number values (sf bug 677762) -- clarified licensing -- another attempt to fix cookie misbehaviour - customise cookie name using - tracker name -- fixed error in indexargs_url (thanks Patrick Ohly) -- fixed getnode (sf bug 684531) -- fixed args to some date templating methods (sf bug 689670) +- fixed Interval maths (sf bug 665357) +- fixed sqlite rollback/caching bug (sf bug 689383) +- fixed rdbms table update detection logic (sf bug 703297) +- fixed detection of bad date specs (sf bug 691439) +- required String properties not being flagged (thanks Ajit George) +- only look for CSV files when importing (thanks Dan Grassi) +- can now unset values in CSV editing (sf bug 704788) +- fixed rdbms email address lookup (case insensitivity) +- email file attachments added to issue files list (sf bug 711501) +- added socket timeout to attempt to prevent stuck processes (sf bug 665487) +- email registered users shouldn't be able to log in (sf bug 714673) +- handle missing addresses on users (sf bug 724537) Source and documentation is available at the website: http://roundup.sourceforge.net/
--- a/roundup/__init__.py Sun Apr 27 02:31:30 2003 +0000 +++ b/roundup/__init__.py Thu May 08 07:08:38 2003 +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.18.2.2 2003-02-27 11:21:24 richard Exp $ +# $Id: __init__.py,v 1.18.2.3 2003-05-08 07:07:42 richard Exp $ ''' Roundup - issue tracking for knowledge workers. @@ -67,6 +67,6 @@ much prettier cake :) ''' -__version__ = '0.5.6' +__version__ = '0.5.7' # vim: set filetype=python ts=4 sw=4 et si
