From b56bf024e9eef6152b6373a3a8514d8e47c6745d Mon Sep 17 00:00:00 2001 From: Anand Chowdhary Date: Wed, 28 Oct 2020 17:10:34 +0530 Subject: [PATCH] :recycle: Use H2 instead of H1 in release notes --- config/helpers/default-template.hbs | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/config/helpers/default-template.hbs b/config/helpers/default-template.hbs index ef16a23..88c397f 100644 --- a/config/helpers/default-template.hbs +++ b/config/helpers/default-template.hbs @@ -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}}