-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(auto-changelog): Updated the template for generating the changelog
- Loading branch information
1 parent
0e28dc2
commit 24c6123
Showing
1 changed file
with
40 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,44 @@ | ||
# Mental Space Back End | ||
This file is auto generated using [auto-changelog](https://github.com/cookpete/auto-changelog) | ||
# Mental Space Back-End | ||
All notable changes to this project will be documented in this file. | ||
|
||
## Changelog - Because We Love Change | ||
Greetings, dear user! π Here's a dazzling list of changes and updates. Brace yourself, for the excitement is overwhelming. | ||
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
{{#each sections}} | ||
## π {{this}} - The Stuff Dreams Are Made Of | ||
{{#unless options.hideCredit}} | ||
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). | ||
{{/unless}} | ||
|
||
{{#each commits.[this]}} | ||
- π {{commit.subject}} π | ||
{{#if commit.body}} | ||
{{indentLines commit.body " "}} | ||
{{/if}} | ||
{{/each}} | ||
## Changelog | ||
|
||
{{/each}} | ||
{{#each releases}} | ||
{{#if href}} | ||
## [{{title}}]({{href}}){{#if tag}} - {{isoDate}}{{/if}} | ||
{{else}} | ||
## {{title}}{{#if tag}} - {{isoDate}}{{/if}} | ||
{{/if}} | ||
|
||
{{#if summary}} | ||
{{summary}} | ||
{{/if}} | ||
|
||
{{#if merges}} | ||
### Merged | ||
|
||
{{#each merges}} | ||
- {{#if commit.breaking}}**Breaking change:** {{/if}}{{message}} {{#if href}}[`#{{id}}`]({{href}}){{/if}} | ||
{{/each}} | ||
{{/if}} | ||
|
||
{{#if fixes}} | ||
### Fixed | ||
|
||
{{#each fixes}} | ||
- {{#if commit.breaking}}**Breaking change:** {{/if}}{{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}} | ||
|
||
{{/each}} |