From 509d22ed0552188ced522c7304186b33fdbb8332 Mon Sep 17 00:00:00 2001 From: Ugljesa Jovanovic Date: Sat, 13 Apr 2024 18:07:30 +0200 Subject: [PATCH] Update readme and changelog --- CHANGELOG.md | 5 ++++- README.md | 4 ++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d84d452..221fd36 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,10 @@ ## Descriptive changelog (All dates are DD.MM.YYYY) -#### 0.9.2-SNAPSHOT - current development snapshot +#### 0.9.3-SNAPSHOT - current development snapshot + +#### 0.9.2 - 13.4.2024 +- Use 2.0.2 release of resource loader instead of forked snapshot #### 0.9.1 - 6.4.2024 - Fix #42, return values from libsodium calls are now checked diff --git a/README.md b/README.md index 39de607..358c60a 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ attack surfaces, bugs and other issues and you shouldn't use it in production un #### Gradle ```kotlin -implementation("com.ionspin.kotlin:multiplatform-crypto-libsodium-bindings:0.9.1") +implementation("com.ionspin.kotlin:multiplatform-crypto-libsodium-bindings:0.9.2") ``` #### Snapshot builds @@ -21,7 +21,7 @@ implementation("com.ionspin.kotlin:multiplatform-crypto-libsodium-bindings:0.9.1 repositories { maven("https://oss.sonatype.org/content/repositories/snapshots") } -implementation("com.ionspin.kotlin:multiplatform-crypto-libsodium-bindings:0.9.2-SNAPSHOT") +implementation("com.ionspin.kotlin:multiplatform-crypto-libsodium-bindings:0.9.3-SNAPSHOT") ```