diff --git a/CHANGELOG.md b/CHANGELOG.md index d84d452e..221fd36e 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 39de6078..358c60ab 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") ```