Skip to content

Commit 118d051

Browse files
author
Richard Jones
committed
pre-release machinations
1 parent e3892f7 commit 118d051

File tree

4 files changed

+18
-25
lines changed

4 files changed

+18
-25
lines changed

BUILD.txt

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

10-
1. Edit roundup/__init__.py and doc/announcement.txt to reflect the new
11-
version and appropriate announcements.
10+
1. Edit CHANGES.txt, roundup/__init__.py and doc/announcement.txt to reflect
11+
the new version and appropriate announcements.
1212
2. python setup.py clean --all
1313
3. Edit setup.py to ensure that all information therein (version, contact
1414
information etc) is correct.

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-
2003-??-?? 0.5.7
4+
2003-05-08 0.5.7
55
- fixed Interval maths (sf bug 665357)
66
- fixed sqlite rollback/caching bug (sf bug 689383)
77
- fixed rdbms table update detection logic (sf bug 703297)

doc/announcement.txt

Lines changed: 13 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
=================================================
2-
SC-Track Roundup 0.5.6 - an issue tracking system
2+
SC-Track Roundup 0.5.7 - an issue tracking system
33
=================================================
44

5-
Note: This releases fixes a serious bug in the sqlite and gadfly backends
6-
which could cause data loss. Users are strongly encouraged to upgrade to this
7-
version.
8-
95
This is a bugfix release for version 0.5.x - if you're upgrading from before
106
0.5, you *must* read doc/upgrading.txt!
117

@@ -16,21 +12,18 @@ Roundup requires python 2.1.3 or later for correct operation. Users of the
1612
sqlite backend are encouraged to upgrade sqlite to version 2.7.3.
1713

1814
We've had a good crack at bugs (thanks to all who contributed!):
19-
20-
- fixed database corruption in rdbms property mutation
21-
- fixed templating filter function arguments (sf bug 678911)
22-
- fixed multiselect in searching (sf bug 676874)
23-
- fixed parsing of content-disposition filenames (sf bug 675116)
24-
- added 'h' to roundup-server optarg list (sf bug 674070)
25-
- fixed doc for db.history in anydbm and rdbms_common (sf bug 679221)
26-
- fixed roundup-reminder (sf bug 681042)
27-
- fixed int assumptions about Number values (sf bug 677762)
28-
- clarified licensing
29-
- another attempt to fix cookie misbehaviour - customise cookie name using
30-
tracker name
31-
- fixed error in indexargs_url (thanks Patrick Ohly)
32-
- fixed getnode (sf bug 684531)
33-
- fixed args to some date templating methods (sf bug 689670)
15+
- fixed Interval maths (sf bug 665357)
16+
- fixed sqlite rollback/caching bug (sf bug 689383)
17+
- fixed rdbms table update detection logic (sf bug 703297)
18+
- fixed detection of bad date specs (sf bug 691439)
19+
- required String properties not being flagged (thanks Ajit George)
20+
- only look for CSV files when importing (thanks Dan Grassi)
21+
- can now unset values in CSV editing (sf bug 704788)
22+
- fixed rdbms email address lookup (case insensitivity)
23+
- email file attachments added to issue files list (sf bug 711501)
24+
- added socket timeout to attempt to prevent stuck processes (sf bug 665487)
25+
- email registered users shouldn't be able to log in (sf bug 714673)
26+
- handle missing addresses on users (sf bug 724537)
3427

3528
Source and documentation is available at the website:
3629
http://roundup.sourceforge.net/

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.18.2.2 2003-02-27 11:21:24 richard Exp $
18+
# $Id: __init__.py,v 1.18.2.3 2003-05-08 07:07:42 richard Exp $
1919

2020
''' Roundup - issue tracking for knowledge workers.
2121
@@ -67,6 +67,6 @@
6767
much prettier cake :)
6868
'''
6969

70-
__version__ = '0.5.6'
70+
__version__ = '0.5.7'
7171

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

0 commit comments

Comments
 (0)