From 9b80d75d8035c8d2a02609c1cbb262a289cd2906 Mon Sep 17 00:00:00 2001 From: David Hoepelman <992153+dhoepelman@users.noreply.github.com> Date: Mon, 18 Nov 2024 09:03:29 +0100 Subject: [PATCH] Bump README version to 0.10.0 (#175) --- README.md | 4 ++-- build.gradle.kts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ae0e77b..f18c19c 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ kotlin { sourceSets { commonMain { dependencies { - implementation("io.konform:konform:0.9.0") + implementation("io.konform:konform:0.10.0") } } } @@ -27,7 +27,7 @@ For jvm-only projects add: ``` dependencies { - implementation("io.konform:konform-jvm:0.9.0") + implementation("io.konform:konform-jvm:0.10.0") } ``` diff --git a/build.gradle.kts b/build.gradle.kts index 9b50c7f..0f5b5d7 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -37,7 +37,7 @@ repositories { } group = projectGroup -val projectVersion = System.getenv("CI_VERSION") ?: "0.10.0-SNAPSHOT" +val projectVersion = System.getenv("CI_VERSION") ?: "0.11.0-SNAPSHOT" version = projectVersion //region Kotlin and test configuration