-
Notifications
You must be signed in to change notification settings - Fork 9
/
changelog.hbs
40 lines (34 loc) · 1.12 KB
/
changelog.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
{{#each releases}}
# {{title}}
[{{isoDate}}]
{{#commit-list
merges
heading='### BREAKING CHANGES'
message='^\w+(?:(\(\w+\))|)!:'}}
* \[[{{id}}]({{href}})] {{commit.subject}} by {{commit.author}}
{{/commit-list}}
{{#commit-list
merges
heading='### Features'
message='feat(?:(\(\w+\))|):'}}
* \[[{{id}}]({{href}})] {{commit.subject}} by {{commit.author}}
{{/commit-list}}
{{#commit-list
merges
heading='### Fixes'
message='(bug(?:(\(\w+\))|):)|(fix(?:(\(\w+\))|):)'}}
* \[[{{id}}]({{href}})] {{commit.subject}} by {{commit.author}}
{{/commit-list}}
{{#commit-list
merges
heading='### Chores'
message='(chore(?:(\(\w+\))|):)|(build(?:(\(\w+\))|):)|(npm(?:(\(\w+\))|):)'}}
* \[[{{id}}]({{href}})] {{commit.subject}} by {{commit.author}}
{{/commit-list}}
{{#commit-list
merges
heading='### Other'
exclude='(feat(?:(\(\w+\))|):)|(chore(?:(\(\w+\))|):)|(build(?:(\(\w+\))|):)|(npm(?:(\(\w+\))|):)|(fix(?:(\(\w+\))|):)|(bug(?:(\(\w+\))|):)|(^\w+(?:(\(\w+\))|)!:)'}}
* \[[{{id}}]({{href}})] {{commit.subject}} by {{commit.author}}
{{/commit-list}}
{{/each}}