Merge pull request #22 from ionspin/release-0.8.5

Release 0.8.5
This commit is contained in:
Ugljesa Jovanovic 2022-03-05 20:00:44 +01:00 committed by GitHub
commit 4282fc54c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 10 additions and 4 deletions

1
.gitignore vendored
View File

@ -28,6 +28,7 @@ build/
/sodiumWrapper/static-ios/
/sodiumWrapper/static-linux-x86-64/
/sodiumWrapper/static-macos-x86-64/
/sodiumWrapper/static-macos/
/sodiumWrapper/static-mingw-x86-64/
/sodiumWrapper/static-tvos/
/sodiumWrapper/static-watchos/

View File

@ -1,8 +1,13 @@
## Descriptive changelog
(All dates are DD.MM.YYYY)
#### 0.8.5-SNAPSHOT
#### 0.8.6-SNAPSHOT
#### 0.8.5 - 5.3.2022
- Libsodium updated to 7d67f1909bfa6e12254 (2022)
- Fix array out of bounds on native when trying to get a pointer to empty array. Return null instead.
- Fixed #20 - calling `crypto_sign_ed25519_sk_to_curve25519` instead of `crypto_sign_ed25519_pk_to_curve25519` in jvm and native implementations
- Bump to kotlin 1.6.10
#### 0.8.4 - 19.7.2021
- Bump to kotlin 1.5.21

View File

@ -15,7 +15,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.8.4")
implementation("com.ionspin.kotlin:multiplatform-crypto-libsodium-bindings:0.8.5")
```
#### Snapshot builds
@ -23,7 +23,7 @@ implementation("com.ionspin.kotlin:multiplatform-crypto-libsodium-bindings:0.8.4
repositories {
maven("https://oss.sonatype.org/content/repositories/snapshots")
}
implementation("com.ionspin.kotlin:multiplatform-crypto-libsodium-bindings:0.8.5-SNAPSHOT")
implementation("com.ionspin.kotlin:multiplatform-crypto-libsodium-bindings:0.8.6-SNAPSHOT")
```

View File

@ -39,7 +39,7 @@ object Versions {
object ReleaseInfo {
val group = "com.ionspin.kotlin"
val bindingsVersion = "0.8.5-SNAPSHOT"
val bindingsVersion = "0.8.6-SNAPSHOT"
}
object Deps {