-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathchangelog-template.hbs
61 lines (43 loc) · 1.81 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# Changelog
All notable changes to this project will be documented in this file.
Have a look check our [Migration guide](https://github.com/FraunhoferISST/diva/blob/dev/migration/README.md)
to see if there is anything to keep in mind when updating to the latest version.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
{{#unless options.hideCredit}}
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
{{/unless}}
{{#each releases}}
{{#if href}}
### [{{title}}]({{href}}){{#if tag}}{{/if}}
{{else}}
### {{title}}{{#if tag}}{{/if}}
{{/if}}
{{#if tag}}
> {{niceDate}}
{{/if}}
{{#if summary}}
{{summary}}
{{/if}}
{{#if merges}}
#### Merged
{{#each merges}}
- {{#if commit.breaking}}**Breaking change:** {{/if}}{{message}} {{#if href}}[`#{{id}}`]({{href}}){{/if}}
{{/each}}
{{/if}}
#### Commits ({{ commits.length }})
{{#commit-list commits heading='##### ⚠️Breaking Changes' message='.!:.'}}
- {{subject}} [`{{shorthash}}`]({{href}})
{{/commit-list}}
{{#commit-list commits heading='##### ✅ New Features' message='^feat.' exclude='.!:.'}}
- {{subject}} [`{{shorthash}}`]({{href}})
{{/commit-list}}
{{#commit-list commits heading='##### 🚧 Fixes' message='^fix.' exclude='.!:.'}}
- {{subject}} [`{{shorthash}}`]({{href}})
{{/commit-list}}
{{#commit-list commits heading='##### 📜 Misc' message='^(chore|test|doc|ci|docs).' exclude='.!:.'}}
- {{subject}} [`{{shorthash}}`]({{href}})
{{/commit-list}}
---
{{/each}}
[comment]: # (Generated with npx auto-changelog -o CHANGELOG.md -t changelog-template.hbs)