Skip to content

Commit d64837f

Browse files
MrBerginmichaelbull
authored andcommitted
Update Kotlin to 1.5.10
1 parent 32b1a9e commit d64837f

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

buildSrc/src/main/kotlin/Versions.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
object Versions {
22
const val dokka = "0.10.1"
3-
const val kotlin = "1.4.32"
3+
const val kotlin = "1.5.10"
44
const val kotlinBenchmark = "0.2.0-dev-20"
5-
const val kotlinCoroutines = "1.4.3"
5+
const val kotlinCoroutines = "1.5.0"
66
const val ktor = "1.5.4"
77
const val logback = "1.2.3"
88
const val versionsPlugin = "0.38.0"

kotlin-result-coroutines/src/commonMain/kotlin/com/github/michaelbull/result/coroutines/binding/SuspendableBinding.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public suspend inline fun <V, E> binding(crossinline block: suspend SuspendableR
3737
}
3838
}
3939

40-
internal object BindCancellationException : CancellationException(null)
40+
internal object BindCancellationException : CancellationException(null as String?)
4141

4242
public interface SuspendableResultBinding<E> : CoroutineScope {
4343
public suspend fun <V> Result<V, E>.bind(): V

0 commit comments

Comments
 (0)