version 0.1.11

This commit is contained in:
Sergey Chernov 2024-12-26 15:12:13 +03:00
parent 3f83e842fe
commit 39c5f1f586
2 changed files with 4 additions and 2 deletions

View File

@ -6,6 +6,8 @@ in native targets.
# Recent changes # 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.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. - 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 ```kotlin
dependencies { dependencies {
// ... // ...
implementation("net.sergeych:mp_bintools:0.1.7") implementation("net.sergeych:mp_bintools:0.1.11")
} }
``` ```

View File

@ -6,7 +6,7 @@ plugins {
} }
group = "net.sergeych" group = "net.sergeych"
version = "0.1.10-SNAPSHOT" version = "0.1.11"
repositories { repositories {
mavenCentral() mavenCentral()