From e107ef6ae4414f123d535c17899b38323e3ef98f Mon Sep 17 00:00:00 2001 From: David Hoepelman <992153+dhoepelman@users.noreply.github.com> Date: Tue, 17 Sep 2024 14:12:03 +0200 Subject: [PATCH] Update README to 0.7.0 (#142) Bump version to 0.7.0 --- README.md | 4 ++-- build.gradle.kts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 834eec8..ee90bfd 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ kotlin { sourceSets { commonMain { dependencies { - implementation("io.konform:konform:0.6.2") + implementation("io.konform:konform:0.7.0") } } } @@ -27,7 +27,7 @@ For jvm-only projects add: ``` dependencies { - implementation("io.konform:konform-jvm:0.6.2") + implementation("io.konform:konform-jvm:0.7.0") } ``` diff --git a/build.gradle.kts b/build.gradle.kts index f745172..e8865d1 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -36,7 +36,7 @@ repositories { } group = projectGroup -val projectVersion = System.getenv("CI_VERSION") ?: "0.6.2-SNAPSHOT" +val projectVersion = System.getenv("CI_VERSION") ?: "0.7.1-SNAPSHOT" version = projectVersion //region Kotlin and test configuration