From 4190a01be1a07a5622a05fc4b0a6a625eb105687 Mon Sep 17 00:00:00 2001 From: Tomas Bjerre Date: Wed, 16 Oct 2024 22:16:40 +0200 Subject: [PATCH] fix: deps in default changelog template --- gradle.properties | 4 ++-- src/main/resources/changelog-prepend.mustache | 4 ++-- src/main/resources/changelog.mustache | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/gradle.properties b/gradle.properties index a3d7a7c..9843aa1 100644 --- a/gradle.properties +++ b/gradle.properties @@ -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 diff --git a/src/main/resources/changelog-prepend.mustache b/src/main/resources/changelog-prepend.mustache index 866648f..b6fb49e 100644 --- a/src/main/resources/changelog-prepend.mustache +++ b/src/main/resources/changelog-prepend.mustache @@ -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}} diff --git a/src/main/resources/changelog.mustache b/src/main/resources/changelog.mustache index 07a1b7d..6d85169 100644 --- a/src/main/resources/changelog.mustache +++ b/src/main/resources/changelog.mustache @@ -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}}