We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ffb28ba commit 578764cCopy full SHA for 578764c
build.gradle.kts
@@ -64,7 +64,10 @@ changelog {
64
title = "Change Log"
65
showUnreleased = true
66
unreleasedVersionTitle = "Unreleased"
67
- if (System.getenv("TRAVIS_TAG") != null) futureVersionTag = version.toString()
+ if (System.getenv("TRAVIS_TAG") != null) {
68
+ println("TRAVIS_TAG is ${System.getenv("TRAVIS_TAG")}, Set future version to $version")
69
+ futureVersionTag = version.toString()
70
+ }
71
sections = listOf(
72
SectionDefinition("Features", "feature request"),
73
SectionDefinition("Bugfix", "bug"),
0 commit comments