From: richard Date: Fri, 13 Sep 2002 04:14:07 +0000 (+0000) Subject: pre-beta2 stuff X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;ds=sidebyside;h=9a87d36c91a6299c92cf3c1ec821e23a0b242484;p=roundup.git pre-beta2 stuff git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1161 57a73879-2fb5-44c3-a270-3262357dd7e2 --- diff --git a/CHANGES.txt b/CHANGES.txt index b6217a3..343e51e 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,19 +1,18 @@ This file contains the changes to the Roundup system over time. The entries are given with the most recent entry first. -2002-09-?? 0.5.0 beta2 -Fixed: +2002-09-13 0.5.0 beta2 . all backends now have a .close() method, and it's used everywhere . fixed bug in detectors __init__ . switched the default issue item display to only show issue summary - (add instructions to doc to make it display entire content) - -Feature: + (added instructions to doc to make it display entire content) + . MANIFEST.in was missing a lot of template files . added generic item editing . much nicer layout of template rendering errors . added context/is_edit_ok and context/is_view_ok convenience methods and implemented use of them in the classic template + 2002-09-11 0.5.0 beta1 Fixed: . #576086 ] dumb copying mistake (frontends/ZRoundup.py) diff --git a/MANIFEST.in b/MANIFEST.in index a7a8ffc..b7c6a32 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,10 +1,12 @@ recursive-include roundup *.* home* page* recursive-include frontends *.* +recursive-include scripts *.* *-* +recursive-include tools *.* recursive-include cgi-bin *.cgi recursive-include test *.py *.txt recursive-include doc *.html *.png *.txt recursive-exclude roundup *.pyc *.pyo .cvsignore recursive-exclude frontends *.pyc *.pyo .cvsignore include run_tests *.txt -exclude BUILD.txt I18N_PROGRESS.txt +exclude BUILD.txt I18N_PROGRESS.txt TODO.txt diff --git a/doc/announcement.txt b/doc/announcement.txt index c972fc6..c745b36 100644 --- a/doc/announcement.txt +++ b/doc/announcement.txt @@ -1,5 +1,5 @@ ===================================================== -SC-Track Roundup 0.5 beta1 - an issue tracking system +SC-Track Roundup 0.5 beta2 - an issue tracking system ===================================================== Note: This is the first of two beta releases of the newest version of Roundup. @@ -10,6 +10,17 @@ you have one, and run 0.5 on a copy of the database. If you are upgrading from 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 beta release fixes the following specific problems: + . all backends now have a .close() method, and it's used everywhere + . fixed bug in detectors __init__ + . switched the default issue item display to only show issue summary + (added instructions to doc to make it display entire content) + . MANIFEST.in was missing a lot of template files + . added generic item editing + . much nicer layout of template rendering errors + . added context/is_edit_ok and context/is_view_ok convenience methods and + implemented use of them in the classic template + A lot has been done since 0.4: - new backend for metakit (thanks Gordon McMillan) diff --git a/roundup/__init__.py b/roundup/__init__.py index 4c166da..e9a87a2 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.11 2002-09-11 21:39:17 richard Exp $ +# $Id: __init__.py,v 1.12 2002-09-13 04:14:07 richard Exp $ __doc__ = ''' This is a simple-to-use and -install issue-tracking system with @@ -65,6 +65,6 @@ written by Ka-Ping Yee in the "doc" directory. If nothing else, it has a much prettier cake :) ''' -__version__ = '0.5.0b1' +__version__ = '0.5.0b2' # vim: set filetype=python ts=4 sw=4 et si