From b39d1b4339ea844cf7d4215a6994478a6854f2ef Mon Sep 17 00:00:00 2001 From: David Herman Date: Wed, 10 Apr 2024 14:16:45 -0700 Subject: [PATCH] Set Truthish to v1.0.0 --- README.md | 10 +++++----- build.gradle.kts | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index fb08d0b..8eb4406 100644 --- a/README.md +++ b/README.md @@ -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-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:0.6.5") + implementation("com.varabyte.truthish:truthish:1.0.0") implementation(kotlin("test")) } } @@ -136,7 +136,7 @@ dependencies { // ... testImplementation(kotlin("test")) - testImplementation("com.varabyte.truthish:truthish:0.6.5") + testImplementation("com.varabyte.truthish:truthish:1.0.0") } ``` @@ -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") } ``` diff --git a/build.gradle.kts b/build.gradle.kts index f23075f..c23bf4f 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -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