Skip to content

Commit 9179b25

Browse files
author
Richard Jones
committed
pre-release commits
1 parent 3594888 commit 9179b25

File tree

4 files changed

+22
-15
lines changed

4 files changed

+22
-15
lines changed

BUILD.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ want it to stay that way, too.
1010
This means that we only need to ever build source releases. This is done by
1111
running:
1212

13-
0. Edit setup.py and doc/announcement.txt to reflect the new version and
14-
appropriate announcments.
13+
0. Edit roundup/__init__.py, doc/upgrading.txt and doc/announcement.txt to
14+
reflect the new version and appropriate announcments.
1515
1. python setup.py clean --all
1616
2. Edit setup.py to ensure that all information therein (version, contact
1717
information etc) is correct.

doc/announcement.txt

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,23 @@
11
=================================================
2-
SC-Track Roundup 0.4.3 - an issue tracking system
2+
SC-Track Roundup 0.4.4 - an issue tracking system
33
=================================================
44

55
Note: If you have an existing roundup installation, make a backup of your
66
database. Make sure you read doc/upgrading.txt!
77

8+
This is probably the last 0.4 maintenance release, since I hope to release
9+
the first 0.5 beta next week :)
10+
811
Roundup requires python 2.1.1 for correct operation. Support for dumbdbm
912
requires python 2.1.2 or 2.2. 2.1.3 and 2.2.1 are recommended.
1013

1114
This is a bugfix release, fixing:
1215

13-
. sf bug #576086: dumb copying mistake (frontends/ZRoundup.py)
14-
. installation instructions now mention "python2" in "testing your python".
15-
. bsddb3 backend should use 'c' for create, not 'n' for nuke
16-
. sf bug #571170: gdbm deadlock
17-
. sf bug #576241: MultiLink problems in parsePropsFromForm
18-
. sf bug #516854: "My Issues" and redisplay
19-
. htmltemplate do_menu with additional properties had problems when they
20-
weren't set
21-
. sf bug #562686: email attachments from outlook express
22-
. sf bug #535868: Anonymous User Login
16+
. sf bug #596155: bug with multilink
17+
. sf bug #600699: documentation in doc/getting_started.txt
18+
. sf bug #600700: doc/upgrading.txt: no info about 0.4.3
19+
. sf bug #603696: Mail followup not inserted
20+
. sf bug #603703: way to unassign issues
2321

2422
Source and documentation is available at the website:
2523
http://roundup.sourceforge.net/

doc/upgrading.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ accordingly.
77

88
.. contents::
99

10+
Migrating from 0.4.3 to 0.4.4
11+
=============================
12+
13+
Nothing needs to be done when migrating from 0.4.3 to 0.4.4.
14+
15+
1016
Migrating from 0.4.2 to 0.4.3
1117
=============================
1218

roundup/__init__.py

Lines changed: 5 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.9.2.1 2002-09-02 21:49:04 richard Exp $
18+
# $Id: __init__.py,v 1.9.2.2 2002-09-03 03:09:30 richard Exp $
1919

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

68-
__version__ = '0.4.3'
68+
__version__ = '0.4.4'
6969

7070
#
7171
# $Log: not supported by cvs2svn $
72+
# Revision 1.9.2.1 2002/09/02 21:49:04 richard
73+
# backported fix to CGI form handling from 0.5
74+
#
7275
# Revision 1.9 2002/06/24 01:09:33 richard
7376
# Modifications for the final 0.4.2 release.
7477
#

0 commit comments

Comments
 (0)