summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: e8c6831)
raw | patch | inline | side by side (parent: e8c6831)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Fri, 13 Sep 2002 04:14:07 +0000 (04:14 +0000) | ||
committer | richard <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 | patch | blob | history | |
MANIFEST.in | patch | blob | history | |
doc/announcement.txt | patch | blob | history | |
roundup/__init__.py | patch | blob | history |
diff --git a/CHANGES.txt b/CHANGES.txt
index b6217a3f432db26eabfe32b773ad30de90ceecbe..343e51eb45e20b155df6be615c8cc801b9450da4 100644 (file)
--- a/CHANGES.txt
+++ b/CHANGES.txt
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 a7a8ffca9dff5bcd4fa9148ab9f960db0b77493c..b7c6a328ad9347f9f103c1a69963668c9f8fb67a 100644 (file)
--- a/MANIFEST.in
+++ b/MANIFEST.in
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 c972fc63a2ce90211c1ffc8d7df5938e96c0407c..c745b362b42460845c9c454bfeac58b1bf938f74 100644 (file)
--- a/doc/announcement.txt
+++ b/doc/announcement.txt
=====================================================
-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.
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 4c166dae3d7fbcd6f843427104560ea34845d0cf..e9a87a22a399fae52660c882c7c9db4e9b4c6955 100644 (file)
--- a/roundup/__init__.py
+++ b/roundup/__init__.py
# 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
much prettier cake :)
'''
-__version__ = '0.5.0b1'
+__version__ = '0.5.0b2'
# vim: set filetype=python ts=4 sw=4 et si