Skip to content

Commit

Permalink
Upgrade version to 0.4.3 (#86)
Browse files Browse the repository at this point in the history
  • Loading branch information
Saloed authored Mar 14, 2023
1 parent 4ab04fb commit a4eb7b4
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 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.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
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.2"
version = "0.4.3"

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.2")
implementation("com.github.UnitTestBot.ksmt:ksmt-core:0.4.3")
}
```

#### 3. Add one or more SMT solver 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.
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.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 {
Expand Down

0 comments on commit a4eb7b4

Please sign in to comment.