Skip to content

Commit 124070b

Browse files
author
Richard Jones
committed
*** empty log message ***
1 parent 513fe5a commit 124070b

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

CHANGES.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@ are given with the most recent entry first.
44
2006-02-06 1.1.0
55
Feature:
66
- trackers may configure custom stop-words for the full-text indexer
7-
- login may now be for a single session
7+
- login may now be for a single session (and this is the default)
88
- trackers may hide exceptions from web users (they will be mailed to the
9-
tracker admin)
9+
tracker admin) (hiding is the default)
1010

1111
Fixed:
1212
- fixes in scripts/import_sf.py
1313
- fix some unicode bugs in roundup-admin import
14-
- Xapian indexer wasn't actually being used
15-
- fix reindexing in Xapian
16-
- fix indexing of message content on roundup-admin import
14+
- Xapian indexer wasn't actually being used and its reindexing of existing
15+
data was busted to boot
16+
- roundup-admin import wasn't indexing message content
1717
- allow dispname to be passed to renderWith (sf bug 1424587)
1818
- rename dispname to @dispname to avoid name clashes in the future
1919

doc/upgrading.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ steps.
1313

1414
.. contents::
1515

16-
Migrating from 1.0 to 1.1
17-
=========================
16+
Migrating from 1.0.x to 1.1.0
17+
=============================
1818

19-
1.1 Login for Session Only
20-
--------------------------
19+
1.1 Login "For Session Only"
20+
----------------------------
2121

2222
In 1.1, web logins are alive for the length of a session only, *unless* you
2323
add the following to the login form in your tracker's ``page.html``::

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.35 2006-02-07 04:59:05 richard Exp $
18+
# $Id: __init__.py,v 1.36 2006-02-08 04:46:41 richard Exp $
1919

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

71-
__version__ = '1.0.2p1'
71+
__version__ = '1.1.0'
7272

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

0 commit comments

Comments
 (0)