fix(autoversion): explicitly specify parameter
Some checks failed
ci/woodpecker/push/pages Pipeline was successful
ci/woodpecker/push/gradle Pipeline failed

This commit is contained in:
Johannes Frohnmeyer 2024-09-30 18:34:27 +02:00
parent fcaf3ed19c
commit 2ffa3484cb
Signed by: Johannes
GPG Key ID: E76429612C2929F4

View File

@ -38,7 +38,7 @@ if (File(projectDir, ".git").exists()) {
.map { msg -> CommitType.from(msg) { logger.warn(it) } }
.max { o1, o2 -> o1.compareTo(o2) }
.getOrDefault(CommitType.FIX)
nextRelease = parsedVersion.incrementBy(type, nprop("buildClassifier"))
nextRelease = parsedVersion.incrementBy(type, build = nprop("buildClassifier"))
}
} else {
changelog += "Commits after inception:\n"