diff --git a/README.md b/README.md index 8eb4406..bdfe968 100644 --- a/README.md +++ b/README.md @@ -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)
@@ -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")) } } @@ -136,7 +136,7 @@ dependencies { // ... testImplementation(kotlin("test")) - testImplementation("com.varabyte.truthish:truthish:1.0.0") + testImplementation("com.varabyte.truthish:truthish:1.0.1") } ``` @@ -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") } ``` diff --git a/build.gradle.kts b/build.gradle.kts index 3578e81..dd1a5ec 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -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