Bump sample dep version and fix README typo. Fixes #13

This commit is contained in:
Ugljesa Jovanovic 2021-07-28 15:56:28 +02:00
parent c7b3599c7c
commit 965615f145
No known key found for this signature in database
GPG Key ID: 178E6DFCECCB0E0F
2 changed files with 4 additions and 4 deletions

View File

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

View File

@ -26,7 +26,7 @@ object Versions {
val kotlinBigNumVersion = "0.2.8" val kotlinBigNumVersion = "0.2.8"
val jna = "5.7.0" val jna = "5.7.0"
val kotlinPoet = "1.6.0" val kotlinPoet = "1.6.0"
val libsodiumBindings = "0.1.1-SNAPSHOT" val sampleLibsodiumBindings = "0.8.5-SNAPSHOT"
val ktor = "1.3.2" val ktor = "1.3.2"
val timber = "4.7.1" val timber = "4.7.1"
val kodeinVersion = "7.1.0" val kodeinVersion = "7.1.0"
@ -59,7 +59,7 @@ object Deps {
val apiProject = ":multiplatform-crypto-api" val apiProject = ":multiplatform-crypto-api"
val libsodiumBindings = "com.ionspin.kotlin:multiplatform-crypto-libsodium-bindings:${Versions.libsodiumBindings}" val libsodiumBindings = "com.ionspin.kotlin:multiplatform-crypto-libsodium-bindings:${Versions.sampleLibsodiumBindings}"
val kodein = "org.kodein.di:kodein-di:${Versions.kodeinVersion}" val kodein = "org.kodein.di:kodein-di:${Versions.kodeinVersion}"
} }