-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.changelog.hbs
53 lines (40 loc) · 1.62 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
41
42
43
44
45
46
47
48
49
50
51
52
53
# Changelog
All notable changes to this project will be documented in this file.
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
{{#each releases}}
{{#if href}}
## [{{title}}]({{href}}){{#if tag}} - {{isoDate}}{{/if}}
{{else}}
## {{title}}{{#if tag}} - {{isoDate}}{{/if}}
{{/if}}
{{#if summary}}
{{summary}}
{{/if}}
{{#if merges}}
### Merged
{{#each merges}}
- {{#if href}}[`#{{id}}`]({{href}}){{/if}} {{{message}}}
{{/each}}
{{/if}}
{{#commit-list commits heading='### Note' subject='^(⚠️)'}}
#### {{#if href}}[`{{shorthash}}`]({{href}}){{/if}} {{{message}}}
{{/commit-list}}
{{#commit-list commits heading='### Changed' subject='^(💥|🔥|📦)'}}
- {{#if href}}[`{{shorthash}}`]({{href}}){{/if}} {{{subject}}}
{{/commit-list}}
{{#commit-list commits heading='### Added' subject='^(✨)'}}
- {{#if href}}[`{{shorthash}}`]({{href}}){{/if}} {{{subject}}}
{{/commit-list}}
{{#commit-list commits heading='### Improved' subject='^(💄|⚡|♻️)'}}
- {{#if href}}[`{{shorthash}}`]({{href}}){{/if}} {{{subject}}}
{{/commit-list}}
{{#commit-list commits heading='### Fixed' subject='^(🚑|🐛)'}}
- {{#if href}}[`{{shorthash}}`]({{href}}){{/if}} {{{subject}}}
{{/commit-list}}
{{#commit-list commits heading='### Dependencies' subject='^(⬆️|⬇️|➖|➕)'}}
- {{#if href}}[`{{shorthash}}`]({{href}}){{/if}} {{{subject}}}
{{/commit-list}}
{{#commit-list commits heading='### Docs & Tests' subject='^(📝|✅)'}}
- {{#if href}}[`{{shorthash}}`]({{href}}){{/if}} {{{subject}}}
{{/commit-list}}
{{/each}}