From 632b534da9382f3ad008db12235c1b7a5f5144f9 Mon Sep 17 00:00:00 2001 From: InsanusMokrassar Date: Thu, 8 Oct 2020 14:51:21 +0600 Subject: [PATCH] update versions --- CHANGELOG.md | 6 ++++++ build.gradle | 2 +- gradle.properties | 8 ++++---- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d5725a..81a578f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,12 @@ ### 0.6.1 +* Versions updates: + * `Kotlin`: `1.4.0` -> `1.4.10` + * `Kotlin Serialisation`: `1.0.0-RC` -> `1.0.0-RC2` + * `Klock`: `1.12.0` -> `1.12.1` + * `Ktor`: `1.4.0` -> `1.4.1` + ## 0.5.0 * Versions updates diff --git a/build.gradle b/build.gradle index 5ca3336..7a844a8 100644 --- a/build.gradle +++ b/build.gradle @@ -43,7 +43,7 @@ kotlin { implementation kotlin('stdlib') api "org.jetbrains.kotlinx:kotlinx-coroutines-core:$kotlin_coroutines_version" - api "org.jetbrains.kotlinx:kotlinx-serialization-core:$kotlin_serialisation_runtime_version" + api "org.jetbrains.kotlinx:kotlinx-serialization-json:$kotlin_serialisation_runtime_version" api "com.soywiz.korlibs.klock:klock:$klock_version" api "io.ktor:ktor-client-core:$ktor_version" } diff --git a/gradle.properties b/gradle.properties index ce49cf7..3147f93 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,8 +1,8 @@ kotlin.code.style=official -kotlin_version=1.4.0 +kotlin_version=1.4.10 kotlin_coroutines_version=1.3.9 -kotlin_serialisation_runtime_version=1.0.0-RC -klock_version=1.12.0 -ktor_version=1.4.0 +kotlin_serialisation_runtime_version=1.0.0-RC2 +klock_version=1.12.1 +ktor_version=1.4.1 gradle_bintray_plugin_version=1.8.5