Skip to content
This repository has been archived by the owner on Aug 7, 2021. It is now read-only.

Commit

Permalink
♻️ Use H2 instead of H1 in release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
AnandChowdhary committed Oct 28, 2020
1 parent 310043c commit b56bf02
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions config/helpers/default-template.hbs
Original file line number Diff line number Diff line change
@@ -1,48 +1,48 @@
{{#if compareUrl}}
# [v{{nextRelease.version}}]({{compareUrl}}) ({{datetime "UTC:yyyy-mm-dd"}})
## [v{{nextRelease.version}}]({{compareUrl}}) ({{datetime "UTC:yyyy-mm-dd"}})
{{else}}
# v{{nextRelease.version}} ({{datetime "UTC:yyyy-mm-dd"}})
## v{{nextRelease.version}} ({{datetime "UTC:yyyy-mm-dd"}})
{{/if}}

{{#with commits}}
{{#if sparkles}}
## ✨ New features
### ✨ New features

{{#each sparkles}}- {{> commitTemplate}}{{/each}}
{{/if}}

{{#if recycle}}
## ♻️ Updates
### ♻️ Updates

{{#each recycle}}- {{> commitTemplate}}{{/each}}
{{/if}}

{{#if lipstick}}
## πŸ’„ Interface changes
### πŸ’„ Interface changes

{{#each lipstick}}- {{> commitTemplate}}{{/each}}
{{/if}}

{{#if bug}}
## πŸ› Bug fixes
### πŸ› Bug fixes

{{#each bug}}- {{> commitTemplate}}{{/each}}
{{/if}}

{{#if ambulance}}
## πŸš‘ Critical hotfixes
### πŸš‘ Critical hotfixes

{{#each ambulance}}- {{> commitTemplate}}{{/each}}
{{/if}}

{{#if lock}}
## πŸ”’ Security issues
### πŸ”’ Security issues

{{#each lock}}- {{> commitTemplate}}{{/each}}
{{/if}}

{{#if boom}}
## πŸ’₯ Breaking changes
### πŸ’₯ Breaking changes

{{#each boom}}- {{> commitTemplate}}{{/each}}
{{/if}}
Expand Down

0 comments on commit b56bf02

Please sign in to comment.