From 212f82deddbf87b5087d8021997794ffa7d3ecd5 Mon Sep 17 00:00:00 2001 From: sergeych Date: Thu, 27 Mar 2025 00:26:10 +0300 Subject: [PATCH] 0.6.8 for all platforms --- README.md | 4 ++-- build.gradle.kts | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 88ba41b..fb39284 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Kiloparsec -__Recommended version is `0.4.1`: to keep the code compatible with current and further versions we +__Recommended version is `0.6.8`: to keep the code compatible with current and further versions we ask to upgrade to `0.4.2` at least.__ Starting from this version some package names are changed for better clarity and fast UDP endpoints are added. @@ -82,7 +82,7 @@ It could be, depending on your project structure, something like: ```kotlin val commonMain by getting { dependencies { - api("net.sergeych:kiloparsec:0.4.1") + api("net.sergeych:kiloparsec:0.6.8") } } ``` diff --git a/build.gradle.kts b/build.gradle.kts index 56e3379..77a374f 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -21,7 +21,7 @@ plugins { } group = "net.sergeych" -version = "0.6.8-SNAPSHOT" +version = "0.6.8" repositories { mavenCentral() @@ -48,6 +48,7 @@ kotlin { macosX64() macosX64() mingwX64() + androidTarget() @OptIn(ExperimentalWasmDsl::class) wasmJs { browser() @@ -67,7 +68,7 @@ kotlin { implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1") implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.2") api("io.ktor:ktor-client-core:$ktor_version") - api("net.sergeych:crypto2:0.8.3") + api("net.sergeych:crypto2:0.8.4") } } val androidMain by getting {