mirror of
https://github.com/ebullient/obsidian-deck-notes.git
synced 2026-07-22 06:40:43 +00:00
37 lines
732 B
Handlebars
37 lines
732 B
Handlebars
{{#each releases}}
|
|
{{#if href}}
|
|
###{{#unless major}}#{{/unless}} [{{title}}]({{href}})
|
|
{{else}}
|
|
#### {{title}}
|
|
{{/if}}
|
|
|
|
{{#if tag}}
|
|
> {{niceDate}}
|
|
{{/if}}
|
|
|
|
{{#if summary}}
|
|
{{summary}}
|
|
{{/if}}
|
|
|
|
{{#if fixes}}
|
|
Fixes:
|
|
{{#each fixes}}
|
|
- {{#if commit.breaking}}**Breaking change:** {{/if}}{{commit.subject}} {{#each fixes}}#{{id}} {{/each}}
|
|
{{/each}}
|
|
{{/if}}
|
|
|
|
{{#if commits}}
|
|
Commits:
|
|
{{#each commits}}
|
|
- {{#if breaking}}**Breaking change:** {{/if}}{{subject}}{{#if href}} [`{{shorthash}}`]({{href}}){{/if}}
|
|
{{/each}}
|
|
{{/if}}
|
|
|
|
{{#if merges}}
|
|
PRs:
|
|
{{#each merges}}
|
|
- #{{id}} {{#if commit.breaking}}**Breaking change:** {{/if}}{{message}}
|
|
{{/each}}
|
|
{{/if}}
|
|
|
|
{{/each}}
|