diff --git a/CHANGELOG.md b/CHANGELOG.md index acf73be..aa60b41 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # CHANGELOG +## Version 0.2.7 (2023-06-09) + - Updates `kotlincrypto.core` to `0.2.7` [[#36]][36] + - Fix for Android API 23 and below where `javax.crypto.Mac.doFinal` does + not call `javax.crypto.MacSpi.engineReset` [[#core 46]][core-46] + - Updates `kotlincrypto.hash` to `0.2.7` [[#36]][36] + ## Version 0.2.6 (2023-06-08) - Updates `kotlincrypto.core` to `0.2.6` [[#33]][33] - Fix for Android API 21-23 requiring a `Provider` for `javax.crypto.Mac` @@ -58,9 +64,11 @@ [core-38]: https://github.com/KotlinCrypto/core/pull/38 [core-44]: https://github.com/KotlinCrypto/core/pull/44 +[core-46]: https://github.com/KotlinCrypto/core/pull/46 [21]: https://github.com/KotlinCrypto/MACs/pull/21 [23]: https://github.com/KotlinCrypto/MACs/pull/23 [26]: https://github.com/KotlinCrypto/MACs/pull/26 [31]: https://github.com/KotlinCrypto/MACs/pull/31 [32]: https://github.com/KotlinCrypto/MACs/pull/32 [33]: https://github.com/KotlinCrypto/MACs/pull/33 +[36]: https://github.com/KotlinCrypto/MACs/pull/36 diff --git a/README.md b/README.md index 8ebcc07..aa8d1ae 100644 --- a/README.md +++ b/README.md @@ -118,7 +118,7 @@ shown below. // build.gradle.kts dependencies { // define the BOM and its version - implementation(platform("org.kotlincrypto.macs:bom:0.2.6")) + implementation(platform("org.kotlincrypto.macs:bom:0.2.7")) // define artifacts without version @@ -141,13 +141,13 @@ dependencies { ``` -[badge-latest-release]: https://img.shields.io/badge/latest--release-0.2.6-blue.svg?style=flat +[badge-latest-release]: https://img.shields.io/badge/latest--release-0.2.7-blue.svg?style=flat [badge-license]: https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat [badge-kotlin]: https://img.shields.io/badge/kotlin-1.8.21-blue.svg?logo=kotlin -[badge-core]: https://img.shields.io/badge/kotlincrypto.core-0.2.6-blue.svg -[badge-hash]: https://img.shields.io/badge/kotlincrypto.hash-0.2.6-blue.svg +[badge-core]: https://img.shields.io/badge/kotlincrypto.core-0.2.7-blue.svg +[badge-hash]: https://img.shields.io/badge/kotlincrypto.hash-0.2.7-blue.svg [badge-platform-android]: http://img.shields.io/badge/-android-6EDB8D.svg?style=flat diff --git a/gradle.properties b/gradle.properties index 6503a1f..5fa2d8f 100644 --- a/gradle.properties +++ b/gradle.properties @@ -34,7 +34,7 @@ POM_DEVELOPER_ID=KotlinCrypto POM_DEVELOPER_NAME=Kotlin Crypto POM_DEVELOPER_URL=https://github.com/KotlinCrypto/ -VERSION_NAME=0.2.7-SNAPSHOT +VERSION_NAME=0.2.7 # 0.1.0-alpha01 = 00 01 00 11 # 0.1.0-beta01 = 00 01 00 21 # 0.1.0-rc01 = 00 01 00 31