Bump
ci/woodpecker/manual/pages Pipeline is pending Details
ci/woodpecker/manual/gradle Pipeline failed Details

This commit is contained in:
Johannes Frohnmeyer 2023-06-29 12:36:47 +02:00
parent 08834bb31e
commit 8d3c24c7f0
Signed by: Johannes
GPG Key ID: E76429612C2929F4
2 changed files with 2 additions and 2 deletions

View File

@ -1,2 +1,2 @@
group = "io.gitlab.jfronny"
version = "1.3-SNAPSHOT"
version = "1.4-SNAPSHOT"

View File

@ -15,10 +15,10 @@ if (File(projectDir, ".git").exists()) {
if (tags.isNotEmpty()) {
if (tags[0].fullMessage != null) changelog += "${tags[0].fullMessage}\n"
versionS = tags[0].name
lastRelease = versionS
val parsedVersion = SemanticVersion.parse(versionS)
versionType = parsedVersion.type
versionS = parsedVersion.unclassifiedToString()
lastRelease = versionS
if (isRelease) {
changelog += "Commits in ${versionType.displayName} $versionS:\n"
changelog += git.log(if (tags.size >= 2) tags[1].peeledId else null, tags[0].peeledId)