Skip to content

Commit fa9ff05

Browse files
committed
Prepare 0.2.7 release
1 parent e3293c5 commit fa9ff05

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG
22

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+
37
## Version 0.2.6 (2023-06-08)
48
- Fixes Android API 21-23 requiring a `Provider` in order to set
59
`javax.crypto.Mac.spiImpl` when `javax.crypto.Mac.init` is
@@ -69,3 +73,4 @@
6973
[40]: https://github.com/KotlinCrypto/core/pull/40
7074
[43]: https://github.com/KotlinCrypto/core/pull/43
7175
[44]: https://github.com/KotlinCrypto/core/pull/44
76+
[46]: https://github.com/KotlinCrypto/core/pull/46

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ The best way to keep `KotlinCrypto` dependencies up to date is by using the
218218
```kotlin
219219
// build.gradle.kts
220220
dependencies {
221-
val core = "0.2.6"
221+
val core = "0.2.7"
222222
implementation("org.kotlincrypto.core:digest:$core")
223223
implementation("org.kotlincrypto.core:mac:$core")
224224
implementation("org.kotlincrypto.core:xof:$core")
@@ -230,15 +230,15 @@ dependencies {
230230
```groovy
231231
// build.gradle
232232
dependencies {
233-
def core = "0.2.6"
233+
def core = "0.2.7"
234234
implementation "org.kotlincrypto.core:digest:$core"
235235
implementation "org.kotlincrypto.core:mac:$core"
236236
implementation "org.kotlincrypto.core:xof:$core"
237237
}
238238
```
239239

240240
<!-- 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
242242
[badge-license]: https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat
243243

244244
<!-- TAG_DEPENDENCIES -->

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ POM_DEVELOPER_ID=KotlinCrypto
3434
POM_DEVELOPER_NAME=Kotlin Crypto
3535
POM_DEVELOPER_URL=https://github.com/KotlinCrypto/
3636

37-
VERSION_NAME=0.2.7-SNAPSHOT
37+
VERSION_NAME=0.2.7
3838
# 0.1.0-alpha01 = 00 01 00 11
3939
# 0.1.0-beta01 = 00 01 00 21
4040
# 0.1.0-rc01 = 00 01 00 31

0 commit comments

Comments
 (0)