diff --git a/CHANGELOG.md b/CHANGELOG.md index 58da769..08eb558 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,12 @@ ## Descriptive changelog (All dates are DD.MM.YYYY) -#### 0.8.4-SNAPSHOT +#### 0.8.5-SNAPSHOT + +#### 0.8.4 - 19.7.2021 - Bump to kotlin 1.5.21 - Libsodium.js bump to 0.7.9 -- Removed bintray/jcenter repositories +- Removed bintray/jcenter repositories #### 0.8.3 - 28.5.2021 - Built with kotlin 1.5.10 diff --git a/README.md b/README.md index 2b8159a..e8ff54a 100644 --- a/README.md +++ b/README.md @@ -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-lisodium-bindings:0.8.3") +implementation("com.ionspin.kotlin:multiplatform-crypto-lisodium-bindings:0.8.4") ``` #### Snapshot builds @@ -23,7 +23,7 @@ implementation("com.ionspin.kotlin:multiplatform-crypto-lisodium-bindings:0.8.3" repositories { maven("https://oss.sonatype.org/content/repositories/snapshots") } -implementation("com.ionspin.kotlin:multiplatform-crypto-lisodium-bindings:0.8.4-SNAPSHOT ") +implementation("com.ionspin.kotlin:multiplatform-crypto-lisodium-bindings:0.8.5-SNAPSHOT") ``` diff --git a/buildSrc/src/main/kotlin/Deps.kt b/buildSrc/src/main/kotlin/Deps.kt index a8fd195..c659ff8 100644 --- a/buildSrc/src/main/kotlin/Deps.kt +++ b/buildSrc/src/main/kotlin/Deps.kt @@ -41,7 +41,7 @@ object Versions { object ReleaseInfo { val group = "com.ionspin.kotlin" val version = "0.1.0-SNAPSHOT" - val bindingsVersion = "0.8.4-SNAPSHOT" + val bindingsVersion = "0.8.5-SNAPSHOT" } object Deps {