Mercurial > p > roundup > code
changeset 1017:cfc694864143 maint-0.4
pre-release commits
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Tue, 03 Sep 2002 03:09:30 +0000 |
| parents | b3db3c26d7ad |
| children | a9a73d4e78b9 |
| files | BUILD.txt doc/announcement.txt doc/upgrading.txt roundup/__init__.py |
| diffstat | 4 files changed, 22 insertions(+), 15 deletions(-) [+] |
line wrap: on
line diff
--- a/BUILD.txt Tue Sep 03 02:55:26 2002 +0000 +++ b/BUILD.txt Tue Sep 03 03:09:30 2002 +0000 @@ -10,8 +10,8 @@ This means that we only need to ever build source releases. This is done by running: - 0. Edit setup.py and doc/announcement.txt to reflect the new version and - appropriate announcments. + 0. Edit roundup/__init__.py, doc/upgrading.txt and doc/announcement.txt to + reflect the new version and appropriate announcments. 1. python setup.py clean --all 2. Edit setup.py to ensure that all information therein (version, contact information etc) is correct.
--- a/doc/announcement.txt Tue Sep 03 02:55:26 2002 +0000 +++ b/doc/announcement.txt Tue Sep 03 03:09:30 2002 +0000 @@ -1,25 +1,23 @@ ================================================= -SC-Track Roundup 0.4.3 - an issue tracking system +SC-Track Roundup 0.4.4 - an issue tracking system ================================================= Note: If you have an existing roundup installation, make a backup of your database. Make sure you read doc/upgrading.txt! +This is probably the last 0.4 maintenance release, since I hope to release +the first 0.5 beta next week :) + Roundup requires python 2.1.1 for correct operation. Support for dumbdbm requires python 2.1.2 or 2.2. 2.1.3 and 2.2.1 are recommended. This is a bugfix release, fixing: - . sf bug #576086: dumb copying mistake (frontends/ZRoundup.py) - . installation instructions now mention "python2" in "testing your python". - . bsddb3 backend should use 'c' for create, not 'n' for nuke - . sf bug #571170: gdbm deadlock - . sf bug #576241: MultiLink problems in parsePropsFromForm - . sf bug #516854: "My Issues" and redisplay - . htmltemplate do_menu with additional properties had problems when they - weren't set - . sf bug #562686: email attachments from outlook express - . sf bug #535868: Anonymous User Login + . sf bug #596155: bug with multilink + . sf bug #600699: documentation in doc/getting_started.txt + . sf bug #600700: doc/upgrading.txt: no info about 0.4.3 + . sf bug #603696: Mail followup not inserted + . sf bug #603703: way to unassign issues Source and documentation is available at the website: http://roundup.sourceforge.net/
--- a/doc/upgrading.txt Tue Sep 03 02:55:26 2002 +0000 +++ b/doc/upgrading.txt Tue Sep 03 03:09:30 2002 +0000 @@ -7,6 +7,12 @@ .. contents:: +Migrating from 0.4.3 to 0.4.4 +============================= + +Nothing needs to be done when migrating from 0.4.3 to 0.4.4. + + Migrating from 0.4.2 to 0.4.3 =============================
--- a/roundup/__init__.py Tue Sep 03 02:55:26 2002 +0000 +++ b/roundup/__init__.py Tue Sep 03 03:09:30 2002 +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.9.2.1 2002-09-02 21:49:04 richard Exp $ +# $Id: __init__.py,v 1.9.2.2 2002-09-03 03:09:30 richard Exp $ __doc__ = ''' This is a simple-to-use and -install issue-tracking system with @@ -65,10 +65,13 @@ much prettier cake :) ''' -__version__ = '0.4.3' +__version__ = '0.4.4' # # $Log: not supported by cvs2svn $ +# Revision 1.9.2.1 2002/09/02 21:49:04 richard +# backported fix to CGI form handling from 0.5 +# # Revision 1.9 2002/06/24 01:09:33 richard # Modifications for the final 0.4.2 release. #
