diff --git a/buildSrc/src/main/kotlin/CI.kt b/buildSrc/src/main/kotlin/CI.kt index 24dce5a..74daf64 100644 --- a/buildSrc/src/main/kotlin/CI.kt +++ b/buildSrc/src/main/kotlin/CI.kt @@ -2,8 +2,8 @@ import java.lang.Boolean.parseBoolean object Ci { - private const val SNAPSHOT_BASE = "0.7.1" - private const val RELEASE_VERSION = "0.6.8" + private const val SNAPSHOT_BASE = "0.7.0" + private const val RELEASE_VERSION = "0.6.9" private val githubSha = System.getenv("GITHUB_SHA") ?: "latest" val publishRelease = System.getProperty("release", "true").let(::parseBoolean)