Code

pre-beta2 stuff
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Fri, 13 Sep 2002 04:14:07 +0000 (04:14 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Fri, 13 Sep 2002 04:14:07 +0000 (04:14 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1161 57a73879-2fb5-44c3-a270-3262357dd7e2

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

index b6217a3f432db26eabfe32b773ad30de90ceecbe..343e51eb45e20b155df6be615c8cc801b9450da4 100644 (file)
@@ -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)
index a7a8ffca9dff5bcd4fa9148ab9f960db0b77493c..b7c6a328ad9347f9f103c1a69963668c9f8fb67a 100644 (file)
@@ -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
 
index c972fc63a2ce90211c1ffc8d7df5938e96c0407c..c745b362b42460845c9c454bfeac58b1bf938f74 100644 (file)
@@ -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)
index 4c166dae3d7fbcd6f843427104560ea34845d0cf..e9a87a22a399fae52660c882c7c9db4e9b4c6955 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.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