summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 0578b5d)
raw | patch | inline | side by side (parent: 0578b5d)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Wed, 23 Jan 2002 06:05:36 +0000 (06:05 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Wed, 23 Jan 2002 06:05:36 +0000 (06:05 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@592 57a73879-2fb5-44c3-a270-3262357dd7e2
CHANGES.txt | patch | blob | history | |
doc/announcement.txt | patch | blob | history | |
setup.py | patch | blob | history |
diff --git a/CHANGES.txt b/CHANGES.txt
index 340e490e1e62e3d20c70a8af8890f24c9b177799..a857926f0192406309cc463b2e6e9856004edd52 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-01-?? - 0.4.0??
+2002-01-?? - 0.4.0
Feature:
. much nicer history display (actualy real handling of property types etc)
. journal entries for link and mutlilink properties can be switched on or
diff --git a/doc/announcement.txt b/doc/announcement.txt
index ba084d31882f296b5a3b9405549f858d047177e9..d3625fd5a6052bbe1498824d5772317234eddd27 100644 (file)
--- a/doc/announcement.txt
+++ b/doc/announcement.txt
- Roundup 0.4.0b2 - an issue tracking system
+ Roundup 0.4.0 - an issue tracking system
-If you are upgrading please read MIGRATION.txt. There was some information
-missing in this in the b1 release - sorry.
+If you are upgrading please read MIGRATION.txt.
Roundup requires python 2.1.1 for correct operation. Support for dumbdbm
requires python 2.1.2 or 2.2.
- Use of transactions to prevent partial data commits
- Zope Product front-end
- Nicer, more consistent change message generation
- - Several bug fixes
+ - Several bug fixes and more unit tests
- Much, much more: see the CHANGES file for details.
Source and documentation is available at the website:
diff --git a/setup.py b/setup.py
index 75f4fc5c550b9141d40fcb7e5f88807856dd8418..4e2717aa35c3ca46cb24310a43a17f97d3836cb2 100644 (file)
--- a/setup.py
+++ b/setup.py
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
#
-# $Id: setup.py,v 1.28 2002-01-11 03:24:15 richard Exp $
+# $Id: setup.py,v 1.29 2002-01-23 06:05:36 richard Exp $
from distutils.core import setup, Extension
from distutils.util import get_platform
import sys,os
from roundup.templatebuilder import makeHtmlBase
-print 'Running unit tests...'
-import test
-if not test.go():
- sys.exit(0)
-
-
def isTemplateDir(dir):
return dir[0] != '.' and dir != 'CVS' and os.path.isdir(dir) \
and os.path.isfile(os.path.join(dir, '__init__.py'))
setup(
name = "roundup",
- version = "0.4.0b2",
+ version = "0.4.0",
description = "Roundup issue tracking system.",
author = "Richard Jones",
author_email = "richard@users.sourceforge.net",
#
# $Log: not supported by cvs2svn $
+# Revision 1.28 2002/01/11 03:24:15 richard
+# minor changes for 0.4.0b2
+#
# Revision 1.27 2002/01/05 02:09:46 richard
# make setup abort if tests fail
#