Skip to content

Commit a4eb7b4

Browse files
authored
Upgrade version to 0.4.3 (#86)
1 parent 4ab04fb commit a4eb7b4

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ repositories {
1414
}
1515

1616
// core
17-
implementation("com.github.UnitTestBot.ksmt:ksmt-core:0.4.2")
17+
implementation("com.github.UnitTestBot.ksmt:ksmt-core:0.4.3")
1818
// z3 solver
19-
implementation("com.github.UnitTestBot.ksmt:ksmt-z3:0.4.2")
19+
implementation("com.github.UnitTestBot.ksmt:ksmt-z3:0.4.3")
2020
```
2121

2222
## Usage

buildSrc/src/main/kotlin/org.ksmt.ksmt-base.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ plugins {
99
}
1010

1111
group = "org.ksmt"
12-
version = "0.4.2"
12+
version = "0.4.3"
1313

1414
repositories {
1515
mavenCentral()

docs/getting-started.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,17 @@ repositories {
1818
```kotlin
1919
dependencies {
2020
// core
21-
implementation("com.github.UnitTestBot.ksmt:ksmt-core:0.4.2")
21+
implementation("com.github.UnitTestBot.ksmt:ksmt-core:0.4.3")
2222
}
2323
```
2424

2525
#### 3. Add one or more SMT solver dependencies:
2626
```kotlin
2727
dependencies {
2828
// z3
29-
implementation("com.github.UnitTestBot.ksmt:ksmt-z3:0.4.2")
29+
implementation("com.github.UnitTestBot.ksmt:ksmt-z3:0.4.3")
3030
// bitwuzla
31-
implementation("com.github.UnitTestBot.ksmt:ksmt-bitwuzla:0.4.2")
31+
implementation("com.github.UnitTestBot.ksmt:ksmt-bitwuzla:0.4.3")
3232
}
3333
```
3434
SMT solver specific packages are provided with solver native binaries.

examples/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ repositories {
1010

1111
dependencies {
1212
// core
13-
implementation("com.github.UnitTestBot.ksmt:ksmt-core:0.4.2")
13+
implementation("com.github.UnitTestBot.ksmt:ksmt-core:0.4.3")
1414
// z3 solver
15-
implementation("com.github.UnitTestBot.ksmt:ksmt-z3:0.4.2")
15+
implementation("com.github.UnitTestBot.ksmt:ksmt-z3:0.4.3")
1616
}
1717

1818
java {

0 commit comments

Comments
 (0)