Files
pkgcomp/.changelog_template.hbs
2019-04-04 13:01:52 -07:00

23 lines
623 B
Handlebars

### Changelog
{{#each releases}}
{{#if href}}
{{#if major}}
### [{{title}}]({{href}}) ({{niceDate}})
{{else}}
#### [{{title}}]({{href}}) ({{niceDate}})
{{/if}}
{{else}}
#### {{title}} ({{niceDate}})
{{/if}}
{{#each merges}}
- {{message}}{{#if href}} [`#{{id}}`]({{href}}){{/if}}
{{/each}}
{{#each fixes}}
- {{commit.subject}}{{#each fixes}}{{#if href}} [`#{{id}}`]({{href}}){{/if}}{{/each}}
{{/each}}
{{#each commits}}
- {{#matches message "BREAKING CHANGE"}}**Breaking:** {{/matches}}{{subject}}{{#if href}} [`{{shorthash}}`]({{href}}){{/if}}
{{/each}}
{{/each}}