From d8b7306b3edde7ce9dffa3931af82f4c5bde7ec1 Mon Sep 17 00:00:00 2001 From: sergeych Date: Wed, 26 Mar 2025 22:36:53 +0300 Subject: [PATCH 1/2] published to all platforms --- build.gradle.kts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 873c25f..e30235a 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -8,7 +8,7 @@ plugins { } group = "net.sergeych" -version = "0.1.12-SNAPSHOT" +version = "0.1.12s" repositories { mavenCentral() @@ -24,11 +24,11 @@ kotlin { nodejs() } -// macosArm64() -// iosX64() -// iosArm64() -// macosX64() -// iosSimulatorArm64() + macosArm64() + iosX64() + iosArm64() + macosX64() + iosSimulatorArm64() linuxX64() linuxArm64() mingwX64() @@ -57,7 +57,7 @@ kotlin { implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0") // this is actually a bug: we need only the core, but bare core causes strange errors implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3") - api("net.sergeych:mp_stools:[1.5.2-SNAPSHOT,)") + api("net.sergeych:mp_stools:[1.5.2,)") implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.5.0") } } From 1ccb8ea8b30e3c856c81efabc6d9dcfe3e47e119 Mon Sep 17 00:00:00 2001 From: sergeych Date: Wed, 26 Mar 2025 22:47:37 +0300 Subject: [PATCH 2/2] new release, finishing --- README.md | 4 +++- build.gradle.kts | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8e90584..3f65385 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,8 @@ in native targets. # Recent changes +- 0.1.12 published on all platforms. many small additions. + - 0.1.11 added interesting collection classes: auto-sorted list with comparator, expirable cache, etc. - 0.1.7 built with kotlin 2.0.20 which contains important fix in wasmJS @@ -39,7 +41,7 @@ And add dependency to the proper place in your project like this: ```kotlin dependencies { // ... - implementation("net.sergeych:mp_bintools:0.1.11") + implementation("net.sergeych:mp_bintools:0.1.12") } ``` diff --git a/build.gradle.kts b/build.gradle.kts index e30235a..fbaebd5 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -8,7 +8,7 @@ plugins { } group = "net.sergeych" -version = "0.1.12s" +version = "0.1.12" repositories { mavenCentral()