aboutsummaryrefslogtreecommitdiff
path: root/releaselog/format/__init__.py
blob: a5e8ea0da910c1db70612c7b28ed89777db27f79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
"""
Release History Format implementations

To implement a new format, drop into this directory a python source defining
a subclass of ReleaseHistory with the new implementation. The name for the
new format must be defined in the 'format' subclass attribute. This attribute
can be either a string or a list of strings. Use the latter form to define
aliases.

The name of the file normally used to keep release history in this format
must be stored in the 'filename' attribute.

For example

  class NewHistoryFormat(ReleaseHistory):
      format = 'newformat'
      filename = 'HISTORY.txt'
      ...

See the ReleaseHistory documentation for details.
"""

Return to:

Send suggestions and report system problems to the System administrator.