Skip to content

Commit

Permalink
Use kotlinx-coroutines 1.5.2.
Browse files Browse the repository at this point in the history
This adds support for the new Kotlin/Native targets added in Kotlin
1.5.30.
  • Loading branch information
charleskorn committed Sep 3, 2021
1 parent e8b94c6 commit 36cd2df
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions buildSrc/src/main/kotlin/Libs.kt
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,12 @@ object Libs {
}

object Coroutines {
const val debug = "org.jetbrains.kotlinx:kotlinx-coroutines-debug:1.5.1"
const val coreCommon = "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.1"
const val coreJvm = "org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.5.1"
const val coreNative = "org.jetbrains.kotlinx:kotlinx-coroutines-core-native:1.5.1"
const val jdk8 = "org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.5.1"
const val test = "org.jetbrains.kotlinx:kotlinx-coroutines-test:1.5.1"
const val debug = "org.jetbrains.kotlinx:kotlinx-coroutines-debug:1.5.2"
const val coreCommon = "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2"
const val coreJvm = "org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.5.2"
const val coreNative = "org.jetbrains.kotlinx:kotlinx-coroutines-core-native:1.5.2"
const val jdk8 = "org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.5.2"
const val test = "org.jetbrains.kotlinx:kotlinx-coroutines-test:1.5.2"
}

object Serialization {
Expand Down

0 comments on commit 36cd2df

Please sign in to comment.