0.6.8 for all platforms

This commit is contained in:
Sergey Chernov 2025-03-27 00:26:10 +03:00
parent 59b7310385
commit 212f82dedd
2 changed files with 5 additions and 4 deletions

View File

@ -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")
}
}
```

View File

@ -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 {