blob: ab5f97b2cac82bbe585b8aaa408984b240792a76 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
## Sample Changelog template
##
#for $rel in $releases_by_author
* $rel.date $rel.author_name <$rel.author_email> $rel.version-$rel.release
+ Revision: $rel.revision
#if not $rel.released
##+ Status: not released
#end if
#if not $rel.visible
+ EMPTYLOG: Man is the only animal that blushes -- or needs to. -- Mark Twain
#end if
#for $rev in $rel.release_revisions
#for $line in $rev.lines
$line
#end for
#end for
#for $author in $rel.authors
+ $author.name <$author.email>
#for $rev in $author.revisions
#for $line in $rev.lines
$line
#end for
#end for
#end for
#end for
|