From d8fb4b41ca60818db6cc16d86d41779980b697fa Mon Sep 17 00:00:00 2001 From: Ugljesa Jovanovic Date: Sun, 9 Oct 2022 11:33:36 +0200 Subject: [PATCH] Update changelog and readme, release fixes #29 --- CHANGELOG.md | 5 ++++- README.md | 4 ++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3efc796..e6bafb2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,10 @@ ## Descriptive changelog (All dates are DD.MM.YYYY) -#### 0.8.8-SNAPSHOT - Current development snapshot +#### 0.8.9-SNAPSHOT - Current development snapshot + +#### 0.8.8 - 9.10.2022 +- Fix for missing mingw target in published library modules.xml (#29) #### 0.8.7 - 10.9.2022 - Bump to kotlin 1.7.10 diff --git a/README.md b/README.md index 2d5dd28..ff6ab19 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-libsodium-bindings:0.8.7") +implementation("com.ionspin.kotlin:multiplatform-crypto-libsodium-bindings:0.8.8") ``` #### Snapshot builds @@ -23,7 +23,7 @@ implementation("com.ionspin.kotlin:multiplatform-crypto-libsodium-bindings:0.8.7 repositories { maven("https://oss.sonatype.org/content/repositories/snapshots") } -implementation("com.ionspin.kotlin:multiplatform-crypto-libsodium-bindings:0.8.8-SNAPSHOT") +implementation("com.ionspin.kotlin:multiplatform-crypto-libsodium-bindings:0.8.9-SNAPSHOT") ```