forked from cookpete/auto-changelog
-
Notifications
You must be signed in to change notification settings - Fork 1
/
compact.hbs
31 lines (20 loc) · 1.58 KB
/
compact.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
### {{applicationName}}
{{#each releases}}
{{#if href}}
##{{#unless major}}#{{/unless}} [{{title}}]({{href}})
{{else}}
### {{title}}
{{/if}}
{{#if tag}}
##### {{niceDate}}
{{/if}}
{{#if summary}}
{{summary}}
{{/if}}
{{#each allCommits}}
{{#if breaking}}**Breaking change:**
{{/if}} {{#if feature}} ![](https://raw.githubusercontent.com/mohammadranjbar/auto-changelog/master/resources/added.png) {{/if}} {{#if bugFix}} ![](https://raw.githubusercontent.com/mohammadranjbar/auto-changelog/master/resources/fixed.png) {{/if}} {{#if remove}} ![](https://raw.githubusercontent.com/mohammadranjbar/auto-changelog/master/resources/removed.png) {{/if}} {{#if deprecate}} ![](https://raw.githubusercontent.com/mohammadranjbar/auto-changelog/master/resources/deprecated.png) {{/if}} {{#if enhancement}} ![](https://raw.githubusercontent.com/mohammadranjbar/auto-changelog/master/resources/changed.png){{/if}} {{#if style}} ![](https://raw.githubusercontent.com/mohammadranjbar/auto-changelog/master/resources/style.png){{/if}} {{#if refactor}} ![](https://raw.githubusercontent.com/mohammadranjbar/auto-changelog/master/resources/refactor.png){{/if}} {{#if doc}} ![](https://raw.githubusercontent.com/mohammadranjbar/auto-changelog/master/resources/doc.png){{/if}} {{subject}}{{#if href}} [`{{shorthash}}`]({{href}}){{/if}}
{{#if fixes}}- #### related issues {{#each fixes}}{{#if href}} [`#{{id}}`]({{href}}){{/if}}{{/each}} {{/if}}
{{/each}}
{{/each}}
#### *Generated by [`adanic-auto-changelog`](https://github.com/mohammadranjbar/auto-changelog)*