Skip to content

Commit 1c5a880

Browse files
committed
Prepare 0.2.5 release
1 parent 558c05c commit 1c5a880

File tree

5 files changed

+15
-8
lines changed

5 files changed

+15
-8
lines changed

CHANGELOG.md

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

3+
## Version 0.2.5 (2023-06-07)
4+
- Fixes Android API 23 and below not accepting `null` for `Mac.init` key
5+
parameter [[#38]][38]
6+
- Updates `kotlin` to `1.8.21` [[#40]][40]
7+
38
## Version 0.2.4 (2023-04-16)
49
- Adds `Digest.updateDigest` protected open functions for implementors
510
to override when needing access to input before it is buffered [[#34]][34]
@@ -40,3 +45,5 @@
4045
[34]: https://github.com/KotlinCrypto/core/pull/34
4146
[35]: https://github.com/KotlinCrypto/core/pull/35
4247
[36]: https://github.com/KotlinCrypto/core/pull/36
48+
[38]: https://github.com/KotlinCrypto/core/pull/38
49+
[40]: https://github.com/KotlinCrypto/core/pull/40

README.md

Lines changed: 4 additions & 4 deletions
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.4"
221+
val core = "0.2.5"
222222
implementation("org.kotlincrypto.core:digest:$core")
223223
implementation("org.kotlincrypto.core:mac:$core")
224224
implementation("org.kotlincrypto.core:xof:$core")
@@ -230,19 +230,19 @@ dependencies {
230230
```groovy
231231
// build.gradle
232232
dependencies {
233-
def core = "0.2.4"
233+
def core = "0.2.5"
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.4-blue.svg?style=flat
241+
[badge-latest-release]: https://img.shields.io/badge/latest--release-0.2.5-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 -->
245-
[badge-kotlin]: https://img.shields.io/badge/kotlin-1.8.10-blue.svg?logo=kotlin
245+
[badge-kotlin]: https://img.shields.io/badge/kotlin-1.8.21-blue.svg?logo=kotlin
246246
[badge-endians]: https://img.shields.io/badge/kotlincrypto.endians-0.1.0-blue.svg
247247

248248
<!-- TAG_PLATFORMS -->

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.5-SNAPSHOT
37+
VERSION_NAME=0.2.5
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

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[versions]
22
android = "7.4.2"
33
androidxTestRunner = "1.5.2"
4-
binaryCompat = "0.13.1"
4+
binaryCompat = "0.13.2"
55
configuration = "0.1.0"
66
endians = "0.1.0"
77
gradleVersions = "0.46.0"

test-android/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ repositories {
2222
}
2323

2424
kmpConfiguration {
25-
configure {
25+
this.configure {
2626
androidLibrary {
2727
kotlinJvmTarget = JavaVersion.VERSION_11
2828
compileSourceCompatibility = JavaVersion.VERSION_11
@@ -47,7 +47,7 @@ kmpConfiguration {
4747

4848
sourceSetTestInstrumented {
4949
dependencies {
50-
implementation(project(":library:digest"))
50+
// implementation(project(":library:digest"))
5151
implementation(project(":library:mac"))
5252
implementation(libs.androidx.test.runner)
5353
implementation(kotlin("test"))

0 commit comments

Comments
 (0)