{{#each releases}}
  {{#if @first}}
    {{#if summary}}
      {{summary}}
    {{/if}}

    {{#if merges}}
      ### Merged

      {{#each merges}}
        - {{message}} {{#if href}}[`#{{id}}`]({{href}}){{/if}}
      {{/each}}
    {{/if}}

    {{#if fixes}}
      ### Fixed

      {{#each fixes}}
        - {{commit.subject}}{{#each fixes}} {{#if href}}[`#{{id}}`]({{href}}){{/if}}{{/each}}
      {{/each}}
    {{/if}}

    {{#commit-list commits heading='### Commits'}}
      - {{#if breaking}}**Breaking change:** {{/if}}{{subject}} {{#if href}}[`{{shorthash}}`]({{href}}){{/if}}
    {{/commit-list}}

  {{/if}}
{{/each}}
