Skip to content

Commit 43b2882

Browse files
author
Richard Jones
committed
do all the pre-release stuff...
...including full test suite run (and trivially fix failing tests)
1 parent 7bc9882 commit 43b2882

File tree

4 files changed

+22
-8
lines changed

4 files changed

+22
-8
lines changed

BUILD.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ to find out how to install this software.
99
Building and distributing a release of Roundup is done by running:
1010

1111
1. Make sure the unit tests run! "./run_tests.py"
12-
2. Tag the CVS for the release, eg. "cvs tag -R release-0-6-3"
12+
2. XXX "tag" SVN??
1313
3. Edit roundup/__init__.py and doc/announcement.txt to reflect the new
1414
version and appropriate announcements. Add truncated announcement to
1515
setup.py description field.

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-
2009-03-?? 1.4.7
4+
2009-03-13 1.4.7 (r4195)
55

66
Fixes:
77
- a number of security issues were discovered by Daniel Diniz

doc/announcement.txt

Lines changed: 19 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,22 @@
1-
I'm proud to release version 1.4.6 of Roundup.
2-
3-
1.4.6 is a bugfix release:
4-
5-
- Fix bug introduced in 1.4.5 in RDBMS full-text indexing
6-
- Make URL matching code less matchy
1+
I'm proud to release version 1.4.7 of Roundup.
2+
3+
1.4.7 is primarily a bugfix release which contains important security
4+
fixes:
5+
6+
- a number of security issues were discovered by Daniel Diniz
7+
- EditCSV and ExportCSV altered to include permission checks
8+
- HTTP POST required on actions which alter data
9+
- HTML file uploads served as application/octet-stream
10+
- New item action reject creation of new users
11+
- Item retirement was not being controlled
12+
- Roundup is now compatible with Python 2.6
13+
- Improved French and German translations
14+
- Improve consistency of item sorting in HTML interface
15+
- Support sendfile() in mod_python for better file transfer
16+
- Provide a "no selection" option in web interface selection widgets
17+
- Debug logging now uses the logging module rather than print
18+
- Enable XML-RPC through regular web interface
19+
- Various other small bug fixes, robustification and optimisation
720

821
If you're upgrading from an older version of Roundup you *must* follow
922
the "Software Upgrade" guidelines given in the maintenance documentation.

test/test_xmlrpc.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ def setUp(self):
3636
self.server = RoundupInstance(self.db, self.instance.actions, None)
3737

3838
def tearDown(self):
39+
self.db.close()
3940
try:
4041
shutil.rmtree(self.dirname)
4142
except OSError, error:

0 commit comments

Comments
 (0)