Skip to content

Commit

Permalink
fix(auto-changelog): Updated the template for generating the changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
well-it-wasnt-me authored and Antonio D'Angelo committed Dec 3, 2023
1 parent 0e28dc2 commit 24c6123
Showing 1 changed file with 40 additions and 13 deletions.
53 changes: 40 additions & 13 deletions templates/changelog/template.hbs
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}}

0 comments on commit 24c6123

Please sign in to comment.