Update readme and changelog

This commit is contained in:
Ugljesa Jovanovic 2024-04-13 18:07:30 +02:00
parent ad64fa1e4c
commit 509d22ed05
No known key found for this signature in database
GPG Key ID: 5884AC34A0EC67DB
2 changed files with 6 additions and 3 deletions

View File

@ -1,7 +1,10 @@
## Descriptive changelog ## Descriptive changelog
(All dates are DD.MM.YYYY) (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 #### 0.9.1 - 6.4.2024
- Fix #42, return values from libsodium calls are now checked - Fix #42, return values from libsodium calls are now checked

View File

@ -13,7 +13,7 @@ attack surfaces, bugs and other issues and you shouldn't use it in production un
#### Gradle #### Gradle
```kotlin ```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 #### Snapshot builds
@ -21,7 +21,7 @@ implementation("com.ionspin.kotlin:multiplatform-crypto-libsodium-bindings:0.9.1
repositories { repositories {
maven("https://oss.sonatype.org/content/repositories/snapshots") 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")
``` ```