-
Notifications
You must be signed in to change notification settings - Fork 1
/
changelog.mustache
31 lines (29 loc) · 1.37 KB
/
changelog.mustache
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
# Changelog
All notable changes to this project will be documented in this file.
{{#tags}}
## [{{name}}](https://github.com/{{ownerName}}/{{repoName}}/{{compare}}){{#if tagDate .}} - {{tagDate .}} {{/if}}
{{#ifContainsType commits type='feat'}}
### ⭐ Features
{{#commits}}
{{#ifCommitType . type='feat'}}
- {{#eachCommitScope .}} **{{.}}** {{/eachCommitScope}} {{{commitDescription .}}} ([{{shortHash}}](https://github.com/{{ownerName}}/{{repoName}}/commit/{{hashFull}}))
{{/ifCommitType}}
{{/commits}}
{{/ifContainsType}}
{{#ifContainsType commits type='fix'}}
### 🐞 Bug Fixes
{{#commits}}
{{#ifCommitType . type='fix'}}
- {{#eachCommitScope .}} **{{.}}** {{/eachCommitScope}} {{{commitDescription .}}} ([{{shortHash}}](https://github.com/{{ownerName}}/{{repoName}}/commit/{{hashFull}}))
{{/ifCommitType}}
{{/commits}}
{{/ifContainsType}}
{{#ifContainsType commits type='chore'}}
### ♻️ Improvements
{{#commits}}
{{#ifCommitType . type='chore'}}
- {{#eachCommitScope .}} **{{.}}** {{/eachCommitScope}} {{{commitDescription .}}} ([{{shortHash}}](https://github.com/{{ownerName}}/{{repoName}}/commit/{{hashFull}}))
{{/ifCommitType}}
{{/commits}}
{{/ifContainsType}}
{{/tags}}