Skip to content

Commit

Permalink
Downgrade z3 version (#83)
Browse files Browse the repository at this point in the history
* Downgrade z3 version

* Version up: 0.4.2
  • Loading branch information
CaelmBleidd authored Mar 13, 2023
1 parent 250b14e commit 48e2671
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ repositories {
}

// core
implementation("com.github.UnitTestBot.ksmt:ksmt-core:0.4.1")
implementation("com.github.UnitTestBot.ksmt:ksmt-core:0.4.2")
// z3 solver
implementation("com.github.UnitTestBot.ksmt:ksmt-z3:0.4.1")
implementation("com.github.UnitTestBot.ksmt:ksmt-z3:0.4.2")
```

## Usage
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/org.ksmt.ksmt-base.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {
}

group = "org.ksmt"
version = "0.4.1"
version = "0.4.2"

repositories {
mavenCentral()
Expand Down
6 changes: 3 additions & 3 deletions docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@ repositories {
```kotlin
dependencies {
// core
implementation("com.github.UnitTestBot.ksmt:ksmt-core:0.4.1")
implementation("com.github.UnitTestBot.ksmt:ksmt-core:0.4.2")
}
```

#### 3. Add one or more SMT solver dependencies:
```kotlin
dependencies {
// z3
implementation("com.github.UnitTestBot.ksmt:ksmt-z3:0.4.1")
implementation("com.github.UnitTestBot.ksmt:ksmt-z3:0.4.2")
// bitwuzla
implementation("com.github.UnitTestBot.ksmt:ksmt-bitwuzla:0.4.1")
implementation("com.github.UnitTestBot.ksmt:ksmt-bitwuzla:0.4.2")
}
```
SMT solver specific packages are provided with solver native binaries.
Expand Down
4 changes: 2 additions & 2 deletions examples/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ repositories {

dependencies {
// core
implementation("com.github.UnitTestBot.ksmt:ksmt-core:0.4.1")
implementation("com.github.UnitTestBot.ksmt:ksmt-core:0.4.2")
// z3 solver
implementation("com.github.UnitTestBot.ksmt:ksmt-z3:0.4.1")
implementation("com.github.UnitTestBot.ksmt:ksmt-z3:0.4.2")
}

java {
Expand Down
4 changes: 2 additions & 2 deletions ksmt-z3/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ repositories {
mavenCentral()
}

val z3Version = "4.12.1"
val z3Version = "4.11.2"

val z3JavaJar by lazy { mkZ3ReleaseDownloadTask("x64-win", "*.jar") }

val z3Binaries = listOf(
mkZ3ReleaseDownloadTask("x64-win", "*.dll"),
mkZ3ReleaseDownloadTask("x64-glibc-2.35", "*.so"),
mkZ3ReleaseDownloadTask("x64-glibc-2.31", "*.so"),
mkZ3ReleaseDownloadTask("x64-osx-10.16", "*.dylib"),
mkZ3ReleaseDownloadTask("arm64-osx-11.0", "*.dylib")
)
Expand Down

0 comments on commit 48e2671

Please sign in to comment.