From e34bc7453eaa3df0b278f439c762e0f95c419d19 Mon Sep 17 00:00:00 2001 From: InsanusMokrassar Date: Thu, 23 Nov 2023 12:06:46 +0600 Subject: [PATCH] update dependencies --- CHANGELOG.md | 5 +++++ build.gradle | 1 + gradle/libs.versions.toml | 9 ++++++--- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0943568b50..eb1c5cd50c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ ## 9.4.0 +* `Version`: + * `Serialization`: `1.6.0` -> `1.6.1` + * `Ktor`: `2.3.5` -> `2.3.6` + * `MicroUtils`: `0.20.12` -> `0.20.14` + ## 9.3.0 This release become possible thanks to [Anton Lakotka](https://youtrack.jetbrains.com/users/anton.lakotka) diff --git a/build.gradle b/build.gradle index 4e92c5d877..20b3a8a096 100644 --- a/build.gradle +++ b/build.gradle @@ -16,6 +16,7 @@ buildscript { plugins { alias(libs.plugins.kotlin.dokka) + alias(libs.plugins.versions) } // temporal crutch until legacy tests will be stabled or legacy target will be removed diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index ced16411b3..e84ecb753a 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -1,19 +1,21 @@ [versions] kotlin = "1.9.20" -kotlin-serialization = "1.6.0" +kotlin-serialization = "1.6.1" kotlin-coroutines = "1.7.3" javax-activation = "1.1.1" korlibs = "4.0.10" uuid = "0.8.1" -ktor = "2.3.5" +ktor = "2.3.6" ksp = "1.9.20-1.0.14" kotlin-poet = "1.14.2" -microutils = "0.20.12" +microutils = "0.20.14" + +versions = "0.50.0" github-release-plugin = "2.4.1" dokka = "1.9.10" @@ -71,3 +73,4 @@ kotlin-jvm = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" } kotlin-multiplatform = { id = "org.jetbrains.kotlin.multiplatform", version.ref = "kotlin" } kotlin-serialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" } kotlin-dokka = { id = "org.jetbrains.dokka", version.ref = "dokka" } +versions = { id = "com.github.ben-manes.versions", version.ref = "versions" }