-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathchangelog-template.hbs
56 lines (53 loc) · 1.48 KB
/
changelog-template.hbs
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{{#each releases}}
#
{{title}}
[{{isoDate}}]
{{! lit commits with feature: in message, use feature: or Feature: }}
{{#commit-list
commits
heading="### Features"
message="(feature: )|(Feature: )"
exclude="(fix: )|(Fix: )|(break: )|(Break: )|(patch: )|(Patch: )"
}}
*
{{subject}}
([`{{shorthash}}`]({{href}}))
{{files}}-Files changed|{{insertions}}-Insertions|{{deletions}}-Deletions
{{/commit-list}}
{{! use fix: or Fix: }}
{{#commit-list
commits
heading="### Fixes"
message="(fix: )|(Fix: )"
exclude="(break: )|(Break: )|(Feature: )|(feature: )|(patch: )|(Patch: )"
}}
*
{{subject}}
([`{{shorthash}}`]({{href}}))
{{files}}-Files changed|{{insertions}}-Insertions|{{deletions}}-Deletions
{{/commit-list}}
{{! user break: or Break: }}
{{#commit-list
commits
heading="### Breaking changes"
message="(break: )|(Break: )"
exclude="(fix: )|(Fix: )|(Feature: )|(feature: )|(patch: )|(Patch: )"
}}
*
{{subject}}
([`{{shorthash}}`]({{href}}))
{{files}}-Files changed|{{insertions}}-Insertions|{{deletions}}-Deletions
{{/commit-list}}
{{! user patch: or Patch: }}
{{#commit-list
commits
heading="### Little Patch"
message="(patch: )|(Patch: )"
exclude="(fix: )|(Fix: )|(Feature: )|(feature: )|(break: )|(Break: )"
}}
*
{{subject}}
([`{{shorthash}}`]({{href}}))
{{files}}-Files changed|{{insertions}}-Insertions|{{deletions}}-Deletions
{{/commit-list}}
{{/each}}