Skip to content

Commit

Permalink
fix: deps in default changelog template
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasbjerre committed Oct 16, 2024
1 parent fbe3f1b commit 4190a01
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
#Wed Oct 16 21:30:29 CEST 2024
#Wed Oct 16 22:16:00 CEST 2024
description='Library for parsing report files from static code analysis'
group=se.bjurr.gitchangelog
sourceCompatibility=17
targetCompatibility=17
version=2.4.0
version=2.4.1
4 changes: 2 additions & 2 deletions src/main/resources/changelog-prepend.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
### Dependency updates

{{#commits}}
{{#ifCommitType . type="feat"}}
{{#ifCommitScope . scope="utils"}}
{{#ifCommitType . type="chore"}}
{{#ifCommitScope . scope="deps"}}
- {{{commitDescription .}}} ([{{subString hash 0 5}}](https://github.com/{{ownerName}}/{{repoName}}/commit/{{hash}}) {{authorName}}) {{#eachCommitRefs .}}{{#ifMatches . "^#[0-9]+"}} [{{.}}](https://github.com/{{ownerName}}/{{repoName}}/issues/{{subString . 1}}) {{/ifMatches}}{{/eachCommitRefs}} {{#eachCommitFixes .}}{{#ifMatches . "^#[0-9]+"}} [{{.}}](https://github.com/{{ownerName}}/{{repoName}}/issues/{{subString . 1}}) {{/ifMatches}}{{/eachCommitFixes}}
{{/ifCommitScope}}
{{/ifCommitType}}
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/changelog.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ Changelog of {{repoName}}.
### Dependency updates

{{#commits}}
{{#ifCommitType . type="feat"}}
{{#ifCommitScope . scope="utils"}}
{{#ifCommitType . type="chore"}}
{{#ifCommitScope . scope="deps"}}
- {{{commitDescription .}}} ([{{subString hash 0 5}}](https://github.com/{{ownerName}}/{{repoName}}/commit/{{hash}}) {{authorName}}) {{#eachCommitRefs .}}{{#ifMatches . "^#[0-9]+"}} [{{.}}](https://github.com/{{ownerName}}/{{repoName}}/issues/{{subString . 1}}) {{/ifMatches}}{{/eachCommitRefs}} {{#eachCommitFixes .}}{{#ifMatches . "^#[0-9]+"}} [{{.}}](https://github.com/{{ownerName}}/{{repoName}}/issues/{{subString . 1}}) {{/ifMatches}}{{/eachCommitFixes}}
{{/ifCommitScope}}
{{/ifCommitType}}
Expand Down

0 comments on commit 4190a01

Please sign in to comment.