Skip to content

Commit 1032cba

Browse files
author
Richard Jones
committed
pre-release stuff
1 parent 7b0464f commit 1032cba

File tree

3 files changed

+27
-25
lines changed

3 files changed

+27
-25
lines changed

CHANGES.txt

Lines changed: 2 additions & 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-
2006-??-?? 1.1.2
4+
2006-04-27 1.1.2
55
Feature:
66
- server-ctl script uses server configuration file (sf bug 1443805)
77

@@ -24,6 +24,7 @@ Fixed:
2424
- prevent generation of new single-digit seconds dates (sf bug 1429390)
2525
- implement close() on all indexers (sf bug 1242477)
2626

27+
2728
2006-03-03 1.1.1
2829
Fixed:
2930
- failure with browsers not sending "Accept-Language" header

doc/announcement.txt

Lines changed: 23 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,29 @@
1-
I'm proud to release this, the 1.1.1 release of Roundup.
1+
I'm proud to release version 1.1.2 of Roundup.
2+
3+
Feature:
4+
5+
- server-ctl script uses server configuration file (sf bug 1443805)
26

37
Fixed:
48

5-
- failure with browsers not sending "Accept-Language" header
6-
(sf bugs 1429646 and 1435335)
7-
- translate class name in "required property not supplied" error message
8-
(sf bug 1429669)
9-
- error in link property lookups with numeric-alike key values (sf bug 1424550)
10-
- ignore UTF-8 BOM in .po files
11-
- add permission filter to menu() implementations (sf bug 1431188)
12-
- lithuanian translation updated by Nerijus Baliunas (sf patch 1411175)
13-
- incompatibility with python2.3 in the mailer module (sf bug 1432602)
14-
- typo in SMTP TLS option name: "MAIL_TLS_CERFILE" (sf bug 1435452)
15-
- email obfuscation code in html templating is more robust
16-
- blank-title subject line handling (sf bug 1442121)
17-
- "All users may only view and edit issues, files and messages they
18-
create" example in docs (sf bug 1439086)
19-
- saving of queries (sf bug 1436169)
20-
- "Adding a new constrained field to the classic schema" example in docs
21-
(sf bug 1433118)
22-
- security check in mailgw (sf bug 1442145)
23-
- "clear this message" (sf bug 1429367)
24-
- escape all uses of "schema" in mysql backend (sf bug 1397569)
25-
- date spec wasn't allowing week intervals
9+
- indexing may be turned off for FileClass "content" now
10+
("content" and "type" properties are now automatically included in the
11+
FileClass schema where previously the "content" property was faked and
12+
"type" was optional)
13+
- reduced frequency of session timestamp update
14+
- progress display in roundup-admin reindex
15+
- bug in menu() permission filter (sf bug 1444440)
16+
- verbose output during import is optional now (sf bug 1475624)
17+
- escape *all* uses of "schema" in mysql backend (sf bug 1472120)
18+
- responses to user rego email (sf bug 1470254)
19+
- dangling connections in session handling (sf bug 1463359)
20+
- classhelp popup pagination forgot about "type" (sf bug 1465836)
21+
- umask is now configurable (with the same 0002 default)
22+
- sorting of entries in classhelp popup (sf bug 1449000)
23+
- allow single digit seconds in date spec (sf bug 1447141)
24+
- prevent generation of new single-digit seconds dates (sf bug 1429390)
25+
- implement close() on all indexers (sf bug 1242477)
26+
2627

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

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.37 2006-03-03 02:29:10 richard Exp $
18+
# $Id: __init__.py,v 1.38 2006-04-27 05:55:18 richard Exp $
1919

2020
'''Roundup - issue tracking for knowledge workers.
2121
@@ -68,6 +68,6 @@
6868
'''
6969
__docformat__ = 'restructuredtext'
7070

71-
__version__ = '1.1.1'
71+
__version__ = '1.1.2'
7272

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

0 commit comments

Comments
 (0)