-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog-template
41 lines (36 loc) · 1.15 KB
/
changelog-template
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
{{#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: )'}}
* {{subject}} ([`{{shorthash}}`]({{href}}))
{{/commit-list}}
{{! use fix: or Fix: }}
{{#commit-list
commits
heading='### Fixes'
message='(fix: )|(Fix: )'
exclude='(break: )|(Break: )|(Feature: )|(feature: )'}}
* {{subject}} ([`{{shorthash}}`]({{href}}))
{{/commit-list}}
{{! user break: or Break: }}
{{#commit-list
commits
heading='### Breaking changes'
message='(break: )|(Break: )'
exclude='(fix: )|(Fix: )|(Feature: )|(feature: )'}}
* {{subject}} ([`{{shorthash}}`]({{href}}))
{{/commit-list}}
{{! user break: or Break: }}
{{#commit-list
commits
heading='### Changes'
message=''
exclude='(fix: )|(Fix: )|(Feature: )|(feature: )|(break: )|(Break: )'}}
* {{subject}} ([`{{shorthash}}`]({{href}}))
{{/commit-list}}
{{/each}}