Skip to content

Commit

Permalink
Update kotlin to v1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate-bot committed May 14, 2021
1 parent bd587d4 commit 2397030
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions build.gradle.kts
Expand Up @@ -37,7 +37,7 @@ kotlin {
resources.srcDir("games-core/src/main/resources")
dependencies {
implementation(kotlin("stdlib-common"))
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.3")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.0")
// implementation("com.github.lewik.klog:klog-metadata:2.0.2")
}
}
Expand All @@ -51,7 +51,7 @@ kotlin {
kotlin.srcDir("games-server/src/main/kotlin")
resources.srcDir("games-server/src/main/resources")
dependencies {
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.4.3")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.5.0")
implementation("com.github.lewik.klog:klog-jvm:2.0.2")
implementation(kotlin("reflect"))

Expand Down Expand Up @@ -93,13 +93,13 @@ kotlin {
implementation("org.junit.jupiter:junit-jupiter-api:$jupiterVersion")
implementation("org.junit.jupiter:junit-jupiter-params:$jupiterVersion")
runtimeOnly("org.junit.jupiter:junit-jupiter-engine:$jupiterVersion")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.4.3")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.5.0")
}
}
val jsMain by getting {
kotlin.srcDir("games-js/src/main/kotlin")
dependencies {
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core-js:1.4.3")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core-js:1.5.0")
implementation("com.github.lewik.klog:klog-js:2.0.2")
}
}
Expand Down
2 changes: 1 addition & 1 deletion games-js/build.gradle
Expand Up @@ -29,7 +29,7 @@ dependencies {
expectedBy project(':games-core')

compile "com.github.lewik.klog:klog-js:$klog_version"
compile "org.jetbrains.kotlinx:kotlinx-coroutines-core-js:1.4.3"
compile "org.jetbrains.kotlinx:kotlinx-coroutines-core-js:1.5.0"
}

compileKotlin2Js {
Expand Down
2 changes: 1 addition & 1 deletion games-server/build.gradle
Expand Up @@ -76,7 +76,7 @@ dependencies {
testCompile "org.junit.jupiter:junit-jupiter-api:$jupiter_version"
testCompile "org.junit.jupiter:junit-jupiter-params:$jupiter_version"
testRuntime "org.junit.jupiter:junit-jupiter-engine:$jupiter_version"
testCompile group: 'org.jetbrains.kotlinx', name: 'kotlinx-coroutines-test', version: '1.4.3'
testCompile group: 'org.jetbrains.kotlinx', name: 'kotlinx-coroutines-test', version: '1.5.0'
}

clean {
Expand Down

0 comments on commit 2397030

Please sign in to comment.