Skip to content

Commit 89ed295

Browse files
committed
Release v1.1.20
1 parent a522fbd commit 89ed295

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

README.md

+3-7
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ repositories {
2929
}
3030
3131
dependencies {
32-
implementation("com.michael-bull.kotlin-result:kotlin-result:1.1.19")
32+
implementation("com.michael-bull.kotlin-result:kotlin-result:1.1.20")
3333
}
3434
```
3535

@@ -169,14 +169,11 @@ dependency:
169169

170170
```kotlin
171171
dependencies {
172-
implementation("com.michael-bull.kotlin-result:kotlin-result:1.1.19")
173-
implementation("com.michael-bull.kotlin-result:kotlin-result-coroutines:1.1.19")
172+
implementation("com.michael-bull.kotlin-result:kotlin-result:1.1.20")
173+
implementation("com.michael-bull.kotlin-result:kotlin-result-coroutines:1.1.20")
174174
}
175175
```
176176

177-
**DISCLAIMER:** Supported platforms for the `kotlin-result-coroutines` dependency are
178-
limited to that which coroutines currently supports.
179-
180177
The coroutine implementation of `binding` has been designed so that the first
181178
call to `bind()` that fails will cancel all child coroutines within the current
182179
coroutine scope.
@@ -185,7 +182,6 @@ The example below demonstrates a computationally expensive function that takes
185182
five milliseconds to compute being eagerly cancelled as soon as a smaller
186183
function fails in just one millisecond:
187184

188-
189185
```kotlin
190186
suspend fun failsIn5ms(): Result<Int, DomainErrorA> { ... }
191187
suspend fun failsIn1ms(): Result<Int, DomainErrorB> { ... }

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
group=com.michael-bull.kotlin-result
2-
version=1.1.20-SNAPSHOT
2+
version=1.1.20
33
description=A multiplatform Result monad for modelling success or failure operations.
44

55
kotlin.code.style=official

0 commit comments

Comments
 (0)