Skip to content

Commit 81af8cf

Browse files
author
Richard Jones
committed
*** empty log message ***
1 parent d5d909b commit 81af8cf

File tree

2 files changed

+28
-26
lines changed

2 files changed

+28
-26
lines changed

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.38 2006-04-27 05:55:18 richard Exp $
18+
# $Id: __init__.py,v 1.39 2006-10-04 01:12:21 richard Exp $
1919

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

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

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

setup.py

Lines changed: 26 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1717
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1818
#
19-
# $Id: setup.py,v 1.89 2006-03-03 02:29:09 richard Exp $
19+
# $Id: setup.py,v 1.90 2006-10-04 01:14:37 richard Exp $
2020

2121
from distutils.core import setup, Extension
2222
from distutils.util import get_platform
@@ -351,29 +351,31 @@ def main():
351351
If you're upgrading from an older version of Roundup you *must* follow
352352
the "Software Upgrade" guidelines given in the maintenance documentation.
353353
354-
Fixed:
355-
356-
- failure with browsers not sending "Accept-Language" header
357-
(sf bugs 1429646 and 1435335)
358-
- translate class name in "required property not supplied" error message
359-
(sf bug 1429669)
360-
- error in link property lookups with numeric-alike key values (sf bug 1424550)
361-
- ignore UTF-8 BOM in .po files
362-
- add permission filter to menu() implementations (sf bug 1431188)
363-
- lithuanian translation updated by Nerijus Baliunas (sf patch 1411175)
364-
- incompatibility with python2.3 in the mailer module (sf bug 1432602)
365-
- typo in SMTP TLS option name: "MAIL_TLS_CERFILE" (sf bug 1435452)
366-
- email obfuscation code in html templating is more robust
367-
- blank-title subject line handling (sf bug 1442121)
368-
- "All users may only view and edit issues, files and messages they
369-
create" example in docs (sf bug 1439086)
370-
- saving of queries (sf bug 1436169)
371-
- "Adding a new constrained field to the classic schema" example in docs
372-
(sf bug 1433118)
373-
- security check in mailgw (sf bug 1442145)
374-
- "clear this message" (sf bug 1429367)
375-
- escape all uses of "schema" in mysql backend (sf bug 1397569)
376-
- date spec wasn't allowing week intervals
354+
New Features in this release:
355+
356+
- supports Python 2.5, including the sqlite3 module
357+
- full timezone support (sf patch 1465296)
358+
- handle connection loss when responding to web requests
359+
- match incoming mail In-Reply-To against existing messages when no issue
360+
id is specified in the Subject
361+
- added StringHTMLProperty wrapped() method to wrap long lines in issue
362+
display
363+
- include the popcal in Date field editing and search fields by default
364+
- @required in forms may now specify properties of linked items (sf patch
365+
1507093)
366+
- update for latest version of pysqlite (sf bug 1487098; patch 1534227)
367+
- update for latest version of psycopg2 (sf patch 1429391)
368+
- new "exporttables" command in roundup-admin (sf bug 1533791)
369+
- roundup-admin "export" may specify classes to exclude (sf bug 1533791)
370+
- sorting and grouping by multiple properties is now supported by the
371+
backends *and* the classic template.
372+
- sorting, grouping, and searching by transitive properties (e.g.,
373+
messages.author.supervisor) is now supported in all backends
374+
- added filter_sql to SQL backends which takes an arbitrary SQL statement
375+
and returns a list of item ids
376+
377+
There was also a lot of bugfixes - see the bundled CHANGES.txt file for the
378+
list.
377379
''',
378380
'author': "Richard Jones",
379381
'author_email': "[email protected]",

0 commit comments

Comments
 (0)