Skip to content

Commit b571d0c

Browse files
committed
Prepare 0.2.7 release
1 parent 81ceae9 commit b571d0c

File tree

3 files changed

+13
-5
lines changed

3 files changed

+13
-5
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# CHANGELOG
22

3+
## Version 0.2.7 (2023-06-09)
4+
- Updates `kotlincrypto.core` to `0.2.7` [[#36]][36]
5+
- Fix for Android API 23 and below where `javax.crypto.Mac.doFinal` does
6+
not call `javax.crypto.MacSpi.engineReset` [[#core 46]][core-46]
7+
- Updates `kotlincrypto.hash` to `0.2.7` [[#36]][36]
8+
39
## Version 0.2.6 (2023-06-08)
410
- Updates `kotlincrypto.core` to `0.2.6` [[#33]][33]
511
- Fix for Android API 21-23 requiring a `Provider` for `javax.crypto.Mac`
@@ -58,9 +64,11 @@
5864

5965
[core-38]: https://github.com/KotlinCrypto/core/pull/38
6066
[core-44]: https://github.com/KotlinCrypto/core/pull/44
67+
[core-46]: https://github.com/KotlinCrypto/core/pull/46
6168
[21]: https://github.com/KotlinCrypto/MACs/pull/21
6269
[23]: https://github.com/KotlinCrypto/MACs/pull/23
6370
[26]: https://github.com/KotlinCrypto/MACs/pull/26
6471
[31]: https://github.com/KotlinCrypto/MACs/pull/31
6572
[32]: https://github.com/KotlinCrypto/MACs/pull/32
6673
[33]: https://github.com/KotlinCrypto/MACs/pull/33
74+
[36]: https://github.com/KotlinCrypto/MACs/pull/36

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ shown below.
118118
// build.gradle.kts
119119
dependencies {
120120
// define the BOM and its version
121-
implementation(platform("org.kotlincrypto.macs:bom:0.2.6"))
121+
implementation(platform("org.kotlincrypto.macs:bom:0.2.7"))
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.6-blue.svg?style=flat
144+
[badge-latest-release]: https://img.shields.io/badge/latest--release-0.2.7-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.6-blue.svg
150-
[badge-hash]: https://img.shields.io/badge/kotlincrypto.hash-0.2.6-blue.svg
149+
[badge-core]: https://img.shields.io/badge/kotlincrypto.core-0.2.7-blue.svg
150+
[badge-hash]: https://img.shields.io/badge/kotlincrypto.hash-0.2.7-blue.svg
151151

152152
<!-- TAG_PLATFORMS -->
153153
[badge-platform-android]: http://img.shields.io/badge/-android-6EDB8D.svg?style=flat

gradle.properties

Lines changed: 1 addition & 1 deletion
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)