From 14c75225c089137a6d360204b11e33be79bf839b Mon Sep 17 00:00:00 2001 From: Sergey Prytkov Date: Sun, 26 May 2024 03:19:59 +0900 Subject: [PATCH] EVA-PIMP bump versions may 2024 correct release versions (#131) --- buildSrc/src/main/kotlin/CI.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)