diff --git a/CHANGELOG.md b/CHANGELOG.md index f43e9ed..ee8e4d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # CHANGELOG +## Version 0.5.1 (2024-03-18) + - Updates `kotlincrypto.core` to `0.5.1` [[#46]][46] + - Updates `kotlincrypto.endians` to `0.3.0` [[#46]][46] + - Updates `kotlincrypto.sponges` to `0.3.0` [[#46]][46] + - Updates `kotlin` to `1.9.23` [[#46]][46] + - Add experimental support for `wasmJs` & `wasmWasi` [[#46]][46] + - Add support for Java9 `JPMS` via Multi-Release jar [[#47]][47] + ## Version 0.4.0 (2023-11-30) - Updates `kotlincrypto.core` to `0.4.0` [[#42]][42] - Updates `kotlincrypto.hash` to `0.4.0` [[#42]][42] @@ -111,3 +119,5 @@ [40]: https://github.com/KotlinCrypto/MACs/pull/40 [41]: https://github.com/KotlinCrypto/MACs/pull/41 [42]: https://github.com/KotlinCrypto/MACs/pull/42 +[46]: https://github.com/KotlinCrypto/MACs/pull/46 +[47]: https://github.com/KotlinCrypto/MACs/pull/47 diff --git a/README.md b/README.md index c86db9b..0f9b963 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,7 @@ ![badge-platform-jvm] ![badge-platform-js] ![badge-platform-js-node] +![badge-platform-wasm] ![badge-platform-linux] ![badge-platform-macos] ![badge-platform-ios] @@ -21,10 +22,6 @@ ![badge-support-js-ir] ![badge-support-linux-arm] - - Message Authentication Code algorithms for Kotlin Multiplatform ### Usage @@ -120,7 +117,7 @@ shown below. // build.gradle.kts dependencies { // define the BOM and its version - implementation(platform("org.kotlincrypto.macs:bom:0.4.0")) + implementation(platform("org.kotlincrypto.macs:bom:0.5.1")) // define artifacts without version @@ -144,7 +141,7 @@ dependencies { ``` -[badge-latest-release]: https://img.shields.io/badge/latest--release-0.4.0-blue.svg?style=flat +[badge-latest-release]: https://img.shields.io/badge/latest--release-0.5.1-blue.svg?style=flat [badge-license]: https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat diff --git a/gradle.properties b/gradle.properties index 02b3077..b84464a 100644 --- a/gradle.properties +++ b/gradle.properties @@ -30,10 +30,10 @@ POM_DEVELOPER_ID=KotlinCrypto POM_DEVELOPER_NAME=Kotlin Crypto POM_DEVELOPER_URL=https://github.com/KotlinCrypto/ -VERSION_NAME=0.4.1-SNAPSHOT +VERSION_NAME=0.5.1 # 0.1.0-alpha01 = 00 01 00 11 # 0.1.0-beta01 = 00 01 00 21 # 0.1.0-rc01 = 00 01 00 31 # 0.1.0 = 00 01 00 99 # 1.1.0 = 01 01 00 99 -VERSION_CODE=40199 +VERSION_CODE=50199