From 5ecff3c441aa50dc4ce478ec9565057cb6c958f0 Mon Sep 17 00:00:00 2001 From: Francisco Solis <30329003+Im-Fran@users.noreply.github.com> Date: Fri, 20 Oct 2023 11:24:57 -0300 Subject: [PATCH] patch: bump version (#56) --- build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index 604b510..1ce4111 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.4.0-SNAPSHOT" +val projectVersion = env["VERSION"] ?: "0.4.1-SNAPSHOT" group = "xyz.theprogramsrc" version = projectVersion