Skip to content

Commit 924d602

Browse files
authored
build: Configure changelog formatting for release notes in JReleaser (#122)
Fixes gh-121 Signed-off-by: Thomas Vitale <ThomasVitale@users.noreply.github.com>
1 parent 1ad11df commit 924d602

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

build.gradle.kts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import org.jreleaser.model.Active
2+
13
plugins {
24
`base`
35
id("docling-shared")
@@ -48,8 +50,17 @@ jreleaser {
4850
sign = true
4951

5052
changelog {
53+
formatted = Active.ALWAYS
5154
links = true
5255
preset = "conventional-commits"
56+
contributors {
57+
format = "- {{contributorName}}{{#contributorUsernameAsLink}} ({{.}}){{/contributorUsernameAsLink}}"
58+
}
59+
hide {
60+
categories = listOf("merge")
61+
contributors = listOf("GitHub", "dependabot")
62+
}
63+
extraProperties.put("categorizeScopes", true)
5364
}
5465

5566
issues {

0 commit comments

Comments
 (0)