Skip to content

Commit a015f84

Browse files
author
Richard Jones
committed
release stuff
1 parent 30a43e1 commit a015f84

File tree

4 files changed

+4
-66
lines changed

4 files changed

+4
-66
lines changed

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-12-XX 1.4.11 (rXXXX)
4+
2009-12-21 1.4.11 (r4411)
55

66
Features:
77
- Generic class editor may now restore retired items (thanks Ralf Hemmecke)

doc/announcement.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
I'm proud to release version 1.4.11 of Roundup which fixes a number bugs
22
and closes a potential security hole.
33

4-
All tracker maintainers must read the upgrading documentation to make sure
4+
ALL tracker maintainers MUST read the upgrading documentation to make sure
55
the hole is fixed in their tracker.
66

77
Other changes in this release:

roundup/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,6 @@
6868
'''
6969
__docformat__ = 'restructuredtext'
7070

71-
__version__ = '1.4.10'
71+
__version__ = '1.4.11'
7272

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

setup.py

Lines changed: 1 addition & 63 deletions
Original file line numberDiff line numberDiff line change
@@ -101,69 +101,7 @@ def main():
101101
description="A simple-to-use and -install issue-tracking system"
102102
" with command-line, web and e-mail interfaces. Highly"
103103
" customisable.",
104-
long_description='''This version of Roundup fixes some bugs:
105-
106-
- Minor update of doc/developers.txt to point to the new resources
107-
on www.roundup-tracker.org (Bernhard Reiter)
108-
- Small CSS improvements regaring the search box (thanks Thomas Arendsan Hein)
109-
(issue 2550589)
110-
- Indexers behaviour made more consistent regarding length of indexed words
111-
and stopwords (thanks Thomas Arendsen Hein, Bernhard Reiter)(issue 2550584)
112-
- fixed typos in the installation instructions (thanks Thomas Arendsen Hein)
113-
(issue 2550573)
114-
- New config option csv_field_size: Pythons csv module (which is used
115-
for export/import) has a new field size limit starting with python2.5.
116-
We now issue a warning during export if the limit is too small and use
117-
the csv_field_size configuration during import to set the limit for
118-
the csv module.
119-
- Small fix for CGI-handling of XMLRPC requests for python2.4, this
120-
worked only for 2.5 and beyond due to a change in the xmlrpc interface
121-
in python
122-
- Document filter method of xmlrpc interface
123-
- Fix interaction of SSL and XMLRPC, now XMLRPC works with SSL
124-
125-
If you're upgrading from an older version of Roundup you *must* follow
126-
the "Software Upgrade" guidelines given in the maintenance documentation.
127-
128-
Roundup requires python 2.3 or later (but not 3+) for correct operation.
129-
130-
To give Roundup a try, just download (see below), unpack and run::
131-
132-
roundup-demo
133-
134-
Documentation is available at the website:
135-
http://roundup.sourceforge.net/
136-
Mailing lists - the place to ask questions:
137-
http://sourceforge.net/mail/?group_id=31577
138-
139-
About Roundup
140-
=============
141-
142-
Roundup is a simple-to-use and -install issue-tracking system with
143-
command-line, web and e-mail interfaces. It is based on the winning design
144-
from Ka-Ping Yee in the Software Carpentry "Track" design competition.
145-
146-
Note: Ping is not responsible for this project. The contact for this
147-
project is [email protected].
148-
149-
Roundup manages a number of issues (with flexible properties such as
150-
"description", "priority", and so on) and provides the ability to:
151-
152-
(a) submit new issues,
153-
(b) find and edit existing issues, and
154-
(c) discuss issues with other participants.
155-
156-
The system will facilitate communication among the participants by managing
157-
discussions and notifying interested parties when issues are edited. One of
158-
the major design goals for Roundup that it be simple to get going. Roundup
159-
is therefore usable "out of the box" with any python 2.3+ (but not 3+)
160-
installation. It doesn't even need to be "installed" to be operational,
161-
though an install script is provided.
162-
163-
It comes with two issue tracker templates (a classic bug/feature tracker and
164-
a minimal skeleton) and five database back-ends (anydbm, sqlite, metakit,
165-
mysql and postgresql).
166-
''',
104+
long_description=open('doc/announcement.txt').read(),
167105
url='http://www.roundup-tracker.org',
168106
download_url='http://pypi.python.org/pypi/roundup',
169107
classifiers=['Development Status :: 5 - Production/Stable',

0 commit comments

Comments
 (0)