From 2ae86ebfb621e8d6244edcc64dd6ca3bfab8ec62 Mon Sep 17 00:00:00 2001 From: Valentyn Sobol Date: Fri, 10 Jan 2025 12:16:02 +0300 Subject: [PATCH] Upgrade ksmt version to 0.5.28 --- README.md | 6 +++--- buildSrc/src/main/kotlin/io.ksmt.ksmt-base.gradle.kts | 2 +- docs/getting-started.md | 6 +++--- examples/build.gradle.kts | 6 +++--- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index b3b074202..21ee92261 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Get the most out of SMT solving with KSMT features: * Streamlined [solver delivery](#ksmt-distribution) with no need for building a solver or implementing JVM bindings [![KSMT: build](https://github.com/UnitTestBot/ksmt/actions/workflows/build-and-run-tests.yml/badge.svg)](https://github.com/UnitTestBot/ksmt/actions/workflows/build-and-run-tests.yml) -[![Maven Central](https://img.shields.io/maven-central/v/io.ksmt/ksmt-core)](https://central.sonatype.com/artifact/io.ksmt/ksmt-core/0.5.27) +[![Maven Central](https://img.shields.io/maven-central/v/io.ksmt/ksmt-core)](https://central.sonatype.com/artifact/io.ksmt/ksmt-core/0.5.28) [![javadoc](https://javadoc.io/badge2/io.ksmt/ksmt-core/javadoc.svg)](https://javadoc.io/doc/io.ksmt/ksmt-core) ## Get started @@ -20,9 +20,9 @@ To start using KSMT, install it via [Gradle](https://gradle.org/): ```kotlin // core -implementation("io.ksmt:ksmt-core:0.5.27") +implementation("io.ksmt:ksmt-core:0.5.28") // z3 solver -implementation("io.ksmt:ksmt-z3:0.5.27") +implementation("io.ksmt:ksmt-z3:0.5.28") ``` Find basic instructions in the [Getting started](docs/getting-started.md) guide and try it out with the diff --git a/buildSrc/src/main/kotlin/io.ksmt.ksmt-base.gradle.kts b/buildSrc/src/main/kotlin/io.ksmt.ksmt-base.gradle.kts index f1792802b..85b607e2d 100644 --- a/buildSrc/src/main/kotlin/io.ksmt.ksmt-base.gradle.kts +++ b/buildSrc/src/main/kotlin/io.ksmt.ksmt-base.gradle.kts @@ -11,7 +11,7 @@ plugins { } group = "io.ksmt" -version = "0.5.27" +version = "0.5.28" repositories { mavenCentral() diff --git a/docs/getting-started.md b/docs/getting-started.md index c56526fdd..cffc28ae9 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -34,7 +34,7 @@ repositories { ```kotlin dependencies { // core - implementation("io.ksmt:ksmt-core:0.5.27") + implementation("io.ksmt:ksmt-core:0.5.28") } ``` @@ -43,9 +43,9 @@ dependencies { ```kotlin dependencies { // z3 - implementation("io.ksmt:ksmt-z3:0.5.27") + implementation("io.ksmt:ksmt-z3:0.5.28") // bitwuzla - implementation("io.ksmt:ksmt-bitwuzla:0.5.27") + implementation("io.ksmt:ksmt-bitwuzla:0.5.28") } ``` diff --git a/examples/build.gradle.kts b/examples/build.gradle.kts index b62d67776..d842f30b0 100644 --- a/examples/build.gradle.kts +++ b/examples/build.gradle.kts @@ -9,11 +9,11 @@ repositories { dependencies { // core - implementation("io.ksmt:ksmt-core:0.5.27") + implementation("io.ksmt:ksmt-core:0.5.28") // z3 solver - implementation("io.ksmt:ksmt-z3:0.5.27") + implementation("io.ksmt:ksmt-z3:0.5.28") // Runner and portfolio solver - implementation("io.ksmt:ksmt-runner:0.5.27") + implementation("io.ksmt:ksmt-runner:0.5.28") } java {