Skip to content

Commit

Permalink
Update version to v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bitspittle committed Apr 15, 2024
1 parent 013a5c6 commit 24af78d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Truthish

![version](https://img.shields.io/badge/version-1.0.0-blue.svg)
![version](https://img.shields.io/badge/version-1.0.1-blue.svg)
![truthish tests](https://github.com/varabyte/truthish/actions/workflows/gradle-test-all.yml/badge.svg)
![coverage badge](https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/bitspittle/01b6bfe88483946d9f5438f5616d9b9f/raw/truthish-coverage-badge.json)
<br>
Expand Down Expand Up @@ -112,7 +112,7 @@ kotlin {

sourceSets {
commonTest.dependencies {
implementation("com.varabyte.truthish:truthish:1.0.0")
implementation("com.varabyte.truthish:truthish:1.0.1")
implementation(kotlin("test"))
}
}
Expand All @@ -136,7 +136,7 @@ dependencies {
// ...

testImplementation(kotlin("test"))
testImplementation("com.varabyte.truthish:truthish:1.0.0")
testImplementation("com.varabyte.truthish:truthish:1.0.1")
}
```

Expand All @@ -155,9 +155,9 @@ dependencies {
// ...

// If used in tests that are run on the host (i.e. your dev machine)
testImplementation("com.varabyte.truthish:truthish:1.0.0")
testImplementation("com.varabyte.truthish:truthish:1.0.1")

// If used in tests that are run on the device
androidTestImplementation("com.varabyte.truthish:truthish:1.0.0")
androidTestImplementation("com.varabyte.truthish:truthish:1.0.1")
}
```
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ repositories {
}

group = "com.varabyte.truthish"
version = "1.0.1-SNAPSHOT"
version = "1.0.1"

tasks.register("printLineCoverage") {
group = "verification" // Put into the same group as the `kover` tasks
Expand Down

0 comments on commit 24af78d

Please sign in to comment.