File tree 3 files changed +9
-4
lines changed
3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 1
1
# CHANGELOG
2
2
3
+ ## Version 0.2.7 (2023-06-09)
4
+ - Fixes Android API 23 and below not calling ` javax.crypto.MacSpi.engineReset `
5
+ whenever ` javax.crypto.Mac.doFinal ` is invoked [[ #46 ]] [ 46 ]
6
+
3
7
## Version 0.2.6 (2023-06-08)
4
8
- Fixes Android API 21-23 requiring a ` Provider ` in order to set
5
9
` javax.crypto.Mac.spiImpl ` when ` javax.crypto.Mac.init ` is
69
73
[ 40 ] : https://github.com/KotlinCrypto/core/pull/40
70
74
[ 43 ] : https://github.com/KotlinCrypto/core/pull/43
71
75
[ 44 ] : https://github.com/KotlinCrypto/core/pull/44
76
+ [ 46 ] : https://github.com/KotlinCrypto/core/pull/46
Original file line number Diff line number Diff line change @@ -218,7 +218,7 @@ The best way to keep `KotlinCrypto` dependencies up to date is by using the
218
218
``` kotlin
219
219
// build.gradle.kts
220
220
dependencies {
221
- val core = " 0.2.6 "
221
+ val core = " 0.2.7 "
222
222
implementation(" org.kotlincrypto.core:digest:$core " )
223
223
implementation(" org.kotlincrypto.core:mac:$core " )
224
224
implementation(" org.kotlincrypto.core:xof:$core " )
@@ -230,15 +230,15 @@ dependencies {
230
230
``` groovy
231
231
// build.gradle
232
232
dependencies {
233
- def core = "0.2.6 "
233
+ def core = "0.2.7 "
234
234
implementation "org.kotlincrypto.core:digest:$core"
235
235
implementation "org.kotlincrypto.core:mac:$core"
236
236
implementation "org.kotlincrypto.core:xof:$core"
237
237
}
238
238
```
239
239
240
240
<!-- TAG_VERSION -->
241
- [ badge-latest-release ] : https://img.shields.io/badge/latest--release-0.2.6 -blue.svg?style=flat
241
+ [ badge-latest-release ] : https://img.shields.io/badge/latest--release-0.2.7 -blue.svg?style=flat
242
242
[ badge-license ] : https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat
243
243
244
244
<!-- TAG_DEPENDENCIES -->
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ POM_DEVELOPER_ID=KotlinCrypto
34
34
POM_DEVELOPER_NAME =Kotlin Crypto
35
35
POM_DEVELOPER_URL =https://github.com/KotlinCrypto/
36
36
37
- VERSION_NAME =0.2.7-SNAPSHOT
37
+ VERSION_NAME =0.2.7
38
38
# 0.1.0-alpha01 = 00 01 00 11
39
39
# 0.1.0-beta01 = 00 01 00 21
40
40
# 0.1.0-rc01 = 00 01 00 31
You can’t perform that action at this time.
0 commit comments