From 39965a94589d5483b0b74eae21dc5f1e7271ed83 Mon Sep 17 00:00:00 2001 From: Francisco Solis Date: Tue, 19 Sep 2023 19:51:17 -0300 Subject: [PATCH] patch(version): bump version --- build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index 992be7c1..900b0022 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -15,7 +15,7 @@ val env = project.rootProject.file(".env").let { file -> if(file.exists()) file.readLines().filter { it.isNotBlank() && !it.startsWith("#") && it.split("=").size == 2 }.associate { it.split("=")[0] to it.split("=")[1] } else emptyMap() }.toMutableMap().apply { putAll(System.getenv()) } -val projectVersion = env["VERSION"] ?: "0.6.5-SNAPSHOT" +val projectVersion = env["VERSION"] ?: "0.7.0-SNAPSHOT" group = "xyz.theprogramsrc" version = projectVersion.replaceFirst("v", "").replace("/", "")