From a4eb7b49c855c1133fcf0f16b61473393fc6490f Mon Sep 17 00:00:00 2001 From: Valentyn Sobol Date: Tue, 14 Mar 2023 17:38:34 +0300 Subject: [PATCH] Upgrade version to 0.4.3 (#86) --- README.md | 4 ++-- buildSrc/src/main/kotlin/org.ksmt.ksmt-base.gradle.kts | 2 +- docs/getting-started.md | 6 +++--- examples/build.gradle.kts | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 905cd2013..91c764f41 100644 --- a/README.md +++ b/README.md @@ -14,9 +14,9 @@ repositories { } // core -implementation("com.github.UnitTestBot.ksmt:ksmt-core:0.4.2") +implementation("com.github.UnitTestBot.ksmt:ksmt-core:0.4.3") // z3 solver -implementation("com.github.UnitTestBot.ksmt:ksmt-z3:0.4.2") +implementation("com.github.UnitTestBot.ksmt:ksmt-z3:0.4.3") ``` ## Usage diff --git a/buildSrc/src/main/kotlin/org.ksmt.ksmt-base.gradle.kts b/buildSrc/src/main/kotlin/org.ksmt.ksmt-base.gradle.kts index 65eea3b01..2ad7e1cab 100644 --- a/buildSrc/src/main/kotlin/org.ksmt.ksmt-base.gradle.kts +++ b/buildSrc/src/main/kotlin/org.ksmt.ksmt-base.gradle.kts @@ -9,7 +9,7 @@ plugins { } group = "org.ksmt" -version = "0.4.2" +version = "0.4.3" repositories { mavenCentral() diff --git a/docs/getting-started.md b/docs/getting-started.md index 7fbe08cc7..d7a50b03f 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -18,7 +18,7 @@ repositories { ```kotlin dependencies { // core - implementation("com.github.UnitTestBot.ksmt:ksmt-core:0.4.2") + implementation("com.github.UnitTestBot.ksmt:ksmt-core:0.4.3") } ``` @@ -26,9 +26,9 @@ dependencies { ```kotlin dependencies { // z3 - implementation("com.github.UnitTestBot.ksmt:ksmt-z3:0.4.2") + implementation("com.github.UnitTestBot.ksmt:ksmt-z3:0.4.3") // bitwuzla - implementation("com.github.UnitTestBot.ksmt:ksmt-bitwuzla:0.4.2") + implementation("com.github.UnitTestBot.ksmt:ksmt-bitwuzla:0.4.3") } ``` SMT solver specific packages are provided with solver native binaries. diff --git a/examples/build.gradle.kts b/examples/build.gradle.kts index 8d14d3512..d79b4473e 100644 --- a/examples/build.gradle.kts +++ b/examples/build.gradle.kts @@ -10,9 +10,9 @@ repositories { dependencies { // core - implementation("com.github.UnitTestBot.ksmt:ksmt-core:0.4.2") + implementation("com.github.UnitTestBot.ksmt:ksmt-core:0.4.3") // z3 solver - implementation("com.github.UnitTestBot.ksmt:ksmt-z3:0.4.2") + implementation("com.github.UnitTestBot.ksmt:ksmt-z3:0.4.3") } java {