Skip to content

Commit

Permalink
Set Truthish to v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bitspittle committed Apr 12, 2024
1 parent 90fca00 commit 1999c9e
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-0.6.5-yellow.svg)
![version](https://img.shields.io/badge/version-1.0.0-green.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:0.6.5")
implementation("com.varabyte.truthish:truthish:1.0.0")
implementation(kotlin("test"))
}
}
Expand All @@ -136,7 +136,7 @@ dependencies {
// ...

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

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:0.6.5")
testImplementation("com.varabyte.truthish:truthish:1.0.0")

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

group = "com.varabyte.truthish"
version = "0.6.6-SNAPSHOT"
version = "1.0.0"

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

0 comments on commit 1999c9e

Please sign in to comment.