Skip to content

Commit 466479f

Browse files
author
Richard Jones
committed
prep work for release
1 parent 86845ae commit 466479f

File tree

3 files changed

+9
-13
lines changed

3 files changed

+9
-13
lines changed

CHANGES.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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-01-?? - 0.4.0??
4+
2002-01-?? - 0.4.0
55
Feature:
66
. much nicer history display (actualy real handling of property types etc)
77
. journal entries for link and mutlilink properties can be switched on or

doc/announcement.txt

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
Roundup 0.4.0b2 - an issue tracking system
1+
Roundup 0.4.0 - an issue tracking system
22

3-
If you are upgrading please read MIGRATION.txt. There was some information
4-
missing in this in the b1 release - sorry.
3+
If you are upgrading please read MIGRATION.txt.
54

65
Roundup requires python 2.1.1 for correct operation. Support for dumbdbm
76
requires python 2.1.2 or 2.2.
@@ -10,7 +9,7 @@ Big stuff in this release:
109
- Use of transactions to prevent partial data commits
1110
- Zope Product front-end
1211
- Nicer, more consistent change message generation
13-
- Several bug fixes
12+
- Several bug fixes and more unit tests
1413
- Much, much more: see the CHANGES file for details.
1514

1615
Source and documentation is available at the website:

setup.py

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1717
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1818
#
19-
# $Id: setup.py,v 1.28 2002-01-11 03:24:15 richard Exp $
19+
# $Id: setup.py,v 1.29 2002-01-23 06:05:36 richard Exp $
2020

2121
from distutils.core import setup, Extension
2222
from distutils.util import get_platform
@@ -25,12 +25,6 @@
2525
import sys,os
2626
from roundup.templatebuilder import makeHtmlBase
2727

28-
print 'Running unit tests...'
29-
import test
30-
if not test.go():
31-
sys.exit(0)
32-
33-
3428
def isTemplateDir(dir):
3529
return dir[0] != '.' and dir != 'CVS' and os.path.isdir(dir) \
3630
and os.path.isfile(os.path.join(dir, '__init__.py'))
@@ -64,7 +58,7 @@ def isTemplateDir(dir):
6458

6559
setup(
6660
name = "roundup",
67-
version = "0.4.0b2",
61+
version = "0.4.0",
6862
description = "Roundup issue tracking system.",
6963
author = "Richard Jones",
7064
author_email = "[email protected]",
@@ -77,6 +71,9 @@ def isTemplateDir(dir):
7771

7872
#
7973
# $Log: not supported by cvs2svn $
74+
# Revision 1.28 2002/01/11 03:24:15 richard
75+
# minor changes for 0.4.0b2
76+
#
8077
# Revision 1.27 2002/01/05 02:09:46 richard
8178
# make setup abort if tests fail
8279
#

0 commit comments

Comments
 (0)