File tree Expand file tree Collapse file tree 5 files changed +15
-7
lines changed Expand file tree Collapse file tree 5 files changed +15
-7
lines changed Original file line number Diff line number Diff line change 11# CHANGELOG
22
3+ ## Version 0.2.6 (2023-06-08)
4+ - Updates ` kotlincrypto.core ` to ` 0.2.6 ` [[ #33 ]] [ 33 ]
5+ - Fix for Android API 21-23 requiring a ` Provider ` for ` javax.crypto.Mac `
6+ in order to set ` spiImpl ` [[ core #44 ]] [ core-44 ]
7+ - Updates ` kotlincrypto.hash ` to ` 0.2.6 `
8+
39## Version 0.2.5 (2023-06-07)
410 - Updates ` kotlincrypto.core ` to ` 0.2.5 ` [[ #31 ]] [ 31 ]
511 - Fix for Android API 23 and below not accepting ` null ` for ` Mac.init ` key
5157 - Initial Release
5258
5359[ core-38 ] : https://github.com/KotlinCrypto/core/pull/38
60+ [ core-44 ] : https://github.com/KotlinCrypto/core/pull/44
5461[ 21 ] : https://github.com/KotlinCrypto/MACs/pull/21
5562[ 23 ] : https://github.com/KotlinCrypto/MACs/pull/23
5663[ 26 ] : https://github.com/KotlinCrypto/MACs/pull/26
5764[ 31 ] : https://github.com/KotlinCrypto/MACs/pull/31
5865[ 32 ] : https://github.com/KotlinCrypto/MACs/pull/32
66+ [ 33 ] : https://github.com/KotlinCrypto/MACs/pull/33
Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ shown below.
118118// build.gradle.kts
119119dependencies {
120120 // define the BOM and its version
121- implementation(platform(" org.kotlincrypto.macs:bom:0.2.5 " ))
121+ implementation(platform(" org.kotlincrypto.macs:bom:0.2.6 " ))
122122
123123 // define artifacts without version
124124
@@ -141,13 +141,13 @@ dependencies {
141141```
142142
143143<!-- TAG_VERSION -->
144- [ badge-latest-release ] : https://img.shields.io/badge/latest--release-0.2.5 -blue.svg?style=flat
144+ [ badge-latest-release ] : https://img.shields.io/badge/latest--release-0.2.6 -blue.svg?style=flat
145145[ badge-license ] : https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat
146146
147147<!-- TAG_DEPENDENCIES -->
148148[ badge-kotlin ] : https://img.shields.io/badge/kotlin-1.8.21-blue.svg?logo=kotlin
149- [ badge-core ] : https://img.shields.io/badge/kotlincrypto.core-0.2.5 -blue.svg
150- [ badge-hash ] : https://img.shields.io/badge/kotlincrypto.hash-0.2.5 -blue.svg
149+ [ badge-core ] : https://img.shields.io/badge/kotlincrypto.core-0.2.6 -blue.svg
150+ [ badge-hash ] : https://img.shields.io/badge/kotlincrypto.hash-0.2.6 -blue.svg
151151
152152<!-- TAG_PLATFORMS -->
153153[ badge-platform-android ] : http://img.shields.io/badge/-android-6EDB8D.svg?style=flat
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ POM_DEVELOPER_ID=KotlinCrypto
2929POM_DEVELOPER_NAME =Kotlin Crypto
3030POM_DEVELOPER_URL =https://github.com/KotlinCrypto/
3131
32- VERSION_NAME =0.2.6-SNAPSHOT
32+ VERSION_NAME =0.2.6
3333# 0.1.0-alpha01 = 00 01 00 11
3434# 0.1.0-beta01 = 00 01 00 21
3535# 0.1.0-rc01 = 00 01 00 31
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ binaryCompat = "0.13.2"
33bouncyCastle = " 1.73"
44configuration = " 0.1.0"
55cryptoCore = " 0.2.6"
6- cryptoHash = " 0.2.5 "
6+ cryptoHash = " 0.2.6 "
77encoding = " 1.2.2"
88gradleVersions = " 0.46.0"
99kotlin = " 1.8.21"
Original file line number Diff line number Diff line change 1313# limitations under the License.
1414POM_ARTIFACT_ID =kmac
1515POM_NAME =KotlinCrypto Keccak-based Message Authentication Code
16- POM_DESCRIPTION =KMAC128 and KMAC256
16+ POM_DESCRIPTION =KMAC128, KMAC256
You can’t perform that action at this time.
0 commit comments