From 39c5f1f5869afc7452e71bb040e11940ca10beb7 Mon Sep 17 00:00:00 2001 From: sergeych Date: Thu, 26 Dec 2024 15:12:13 +0300 Subject: [PATCH] version 0.1.11 --- README.md | 4 +++- build.gradle.kts | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bd9ec74..8e90584 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,8 @@ in native targets. # Recent changes +- 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 - 0.1.6 add many useful features, added support to wasmJS and all other platforms. Note to wasmJS: it appears to be a bug in wasm compiler so BipackDecoder could cause wasm loading problem. @@ -37,7 +39,7 @@ And add dependency to the proper place in your project like this: ```kotlin dependencies { // ... - implementation("net.sergeych:mp_bintools:0.1.7") + implementation("net.sergeych:mp_bintools:0.1.11") } ``` diff --git a/build.gradle.kts b/build.gradle.kts index ce3fd40..9e5fe93 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -6,7 +6,7 @@ plugins { } group = "net.sergeych" -version = "0.1.10-SNAPSHOT" +version = "0.1.11" repositories { mavenCentral()