-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog-template.hbs
32 lines (25 loc) · 1.13 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
### Changelog
#### All notable changes to this project will be documented in this file.
Generated by the awesome [`auto-changelog`](https://github.com/CookPete/auto-changelog) package 👏🏽.
{{#each releases}}
{{#if href}}
## [{{title}}]({{href}}){{#if tag}} - {{niceDate}}{{/if}}
{{else}}
## {{title}}{{#if tag}} - {{isoDate}}{{/if}}
{{/if}}
{{#if summary}}
{{summary}}
{{/if}}
{{#full-commit-list commits merges fixes heading='### Breaking Changes' subject='Breaking change: '}}
- {{subject}} [`{{shorthash}}`]({{href}})
{{/full-commit-list}}
{{#full-commit-list commits merges fixes heading='### New Features' subject='Feat:' exclude='Breaking change: '}}
- {{subject}} [`{{shorthash}}`]({{href}})
{{/full-commit-list}}
{{#full-commit-list commits merges fixes heading='### Bug Fixes' subject='Bug Fix:' exclude='Breaking change: '}}
- {{subject}} [`{{shorthash}}`]({{href}})
{{/full-commit-list}}
{{#full-commit-list commits merges fixes heading='### Other Changes' exclude='Feat:|Bug Fix:|Breaking change:'}}
- {{subject}} [`{{shorthash}}`]({{href}})
{{/full-commit-list}}
{{/each}}