Skip to content

Commit 1999c9e

Browse files
committed
Set Truthish to v1.0.0
1 parent 90fca00 commit 1999c9e

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Truthish
22

3-
![version](https://img.shields.io/badge/version-0.6.5-yellow.svg)
3+
![version](https://img.shields.io/badge/version-1.0.0-green.svg)
44
![truthish tests](https://github.com/varabyte/truthish/actions/workflows/gradle-test-all.yml/badge.svg)
55
![coverage badge](https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/bitspittle/01b6bfe88483946d9f5438f5616d9b9f/raw/truthish-coverage-badge.json)
66
<br>
@@ -112,7 +112,7 @@ kotlin {
112112

113113
sourceSets {
114114
commonTest.dependencies {
115-
implementation("com.varabyte.truthish:truthish:0.6.5")
115+
implementation("com.varabyte.truthish:truthish:1.0.0")
116116
implementation(kotlin("test"))
117117
}
118118
}
@@ -136,7 +136,7 @@ dependencies {
136136
// ...
137137

138138
testImplementation(kotlin("test"))
139-
testImplementation("com.varabyte.truthish:truthish:0.6.5")
139+
testImplementation("com.varabyte.truthish:truthish:1.0.0")
140140
}
141141
```
142142

@@ -155,9 +155,9 @@ dependencies {
155155
// ...
156156

157157
// If used in tests that are run on the host (i.e. your dev machine)
158-
testImplementation("com.varabyte.truthish:truthish:0.6.5")
158+
testImplementation("com.varabyte.truthish:truthish:1.0.0")
159159

160160
// If used in tests that are run on the device
161-
androidTestImplementation("com.varabyte.truthish:truthish:0.6.5")
161+
androidTestImplementation("com.varabyte.truthish:truthish:1.0.0")
162162
}
163163
```

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ repositories {
1717
}
1818

1919
group = "com.varabyte.truthish"
20-
version = "0.6.6-SNAPSHOT"
20+
version = "1.0.0"
2121

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

0 commit comments

Comments
 (0)