Skip to content

Commit 98570da

Browse files
author
Richard Jones
committed
pre-beta2 stuff
1 parent 3002fd7 commit 98570da

File tree

4 files changed

+21
-9
lines changed

4 files changed

+21
-9
lines changed

CHANGES.txt

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,18 @@
11
This file contains the changes to the Roundup system over time. The entries
22
are given with the most recent entry first.
33

4-
2002-09-?? 0.5.0 beta2
5-
Fixed:
4+
2002-09-13 0.5.0 beta2
65
. all backends now have a .close() method, and it's used everywhere
76
. fixed bug in detectors __init__
87
. switched the default issue item display to only show issue summary
9-
(add instructions to doc to make it display entire content)
10-
11-
Feature:
8+
(added instructions to doc to make it display entire content)
9+
. MANIFEST.in was missing a lot of template files
1210
. added generic item editing
1311
. much nicer layout of template rendering errors
1412
. added context/is_edit_ok and context/is_view_ok convenience methods and
1513
implemented use of them in the classic template
1614

15+
1716
2002-09-11 0.5.0 beta1
1817
Fixed:
1918
. #576086 ] dumb copying mistake (frontends/ZRoundup.py)

MANIFEST.in

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
recursive-include roundup *.* home* page*
22
recursive-include frontends *.*
3+
recursive-include scripts *.* *-*
4+
recursive-include tools *.*
35
recursive-include cgi-bin *.cgi
46
recursive-include test *.py *.txt
57
recursive-include doc *.html *.png *.txt
68
recursive-exclude roundup *.pyc *.pyo .cvsignore
79
recursive-exclude frontends *.pyc *.pyo .cvsignore
810
include run_tests *.txt
9-
exclude BUILD.txt I18N_PROGRESS.txt
11+
exclude BUILD.txt I18N_PROGRESS.txt TODO.txt
1012

doc/announcement.txt

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
=====================================================
2-
SC-Track Roundup 0.5 beta1 - an issue tracking system
2+
SC-Track Roundup 0.5 beta2 - an issue tracking system
33
=====================================================
44

55
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
1010
Roundup requires python 2.1.1 for correct operation. Support for dumbdbm
1111
requires python 2.1.2 or 2.2. 2.1.3 and 2.2.1 are recommended.
1212

13+
This beta release fixes the following specific problems:
14+
. all backends now have a .close() method, and it's used everywhere
15+
. fixed bug in detectors __init__
16+
. switched the default issue item display to only show issue summary
17+
(added instructions to doc to make it display entire content)
18+
. MANIFEST.in was missing a lot of template files
19+
. added generic item editing
20+
. much nicer layout of template rendering errors
21+
. added context/is_edit_ok and context/is_view_ok convenience methods and
22+
implemented use of them in the classic template
23+
1324
A lot has been done since 0.4:
1425

1526
- new backend for metakit (thanks Gordon McMillan)

roundup/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1616
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1717
#
18-
# $Id: __init__.py,v 1.11 2002-09-11 21:39:17 richard Exp $
18+
# $Id: __init__.py,v 1.12 2002-09-13 04:14:07 richard Exp $
1919

2020
__doc__ = '''
2121
This is a simple-to-use and -install issue-tracking system with
@@ -65,6 +65,6 @@
6565
much prettier cake :)
6666
'''
6767

68-
__version__ = '0.5.0b1'
68+
__version__ = '0.5.0b2'
6969

7070
# vim: set filetype=python ts=4 sw=4 et si

0 commit comments

Comments
 (0)