File tree Expand file tree Collapse file tree 4 files changed +16
-8
lines changed Expand file tree Collapse file tree 4 files changed +16
-8
lines changed Original file line number Diff line number Diff line change 1
1
# CHANGELOG
2
2
3
+ ## Version 0.5.3 (2024-08-31)
4
+ - Updates ` kotlin ` to ` 1.9.24 ` [[ #61 ]] [ 61 ]
5
+ - Updates ` endians ` to ` 0.3.1 ` [[ #61 ]] [ 61 ]
6
+ - Fixes multiplatform metadata manifest ` unique_name ` parameter for
7
+ all source sets to be truly unique. [[ #61 ]] [ 61 ]
8
+ - Updates jvm ` .kotlin_module ` with truly unique file name. [[ #61 ]] [ 61 ]
9
+
3
10
## Version 0.5.1 (2024-03-18)
4
11
- Use ` transitive ` keyword for ` JPMS ` ` module-info.java ` files [[ #58 ]] [ 58 ]
5
12
115
122
[ 55 ] : https://github.com/KotlinCrypto/core/pull/55
116
123
[ 56 ] : https://github.com/KotlinCrypto/core/pull/56
117
124
[ 58 ] : https://github.com/KotlinCrypto/core/pull/58
125
+ [ 61 ] : https://github.com/KotlinCrypto/core/pull/61
Original file line number Diff line number Diff line change @@ -217,7 +217,7 @@ The best way to keep `KotlinCrypto` dependencies up to date is by using the
217
217
``` kotlin
218
218
// build.gradle.kts
219
219
dependencies {
220
- val core = " 0.5.1 "
220
+ val core = " 0.5.3 "
221
221
implementation(" org.kotlincrypto.core:digest:$core " )
222
222
implementation(" org.kotlincrypto.core:mac:$core " )
223
223
implementation(" org.kotlincrypto.core:xof:$core " )
@@ -229,20 +229,20 @@ dependencies {
229
229
``` groovy
230
230
// build.gradle
231
231
dependencies {
232
- def core = "0.5.1 "
232
+ def core = "0.5.3 "
233
233
implementation "org.kotlincrypto.core:digest:$core"
234
234
implementation "org.kotlincrypto.core:mac:$core"
235
235
implementation "org.kotlincrypto.core:xof:$core"
236
236
}
237
237
```
238
238
239
239
<!-- TAG_VERSION -->
240
- [ badge-latest-release ] : https://img.shields.io/badge/latest--release-0.5.1 -blue.svg?style=flat
240
+ [ badge-latest-release ] : https://img.shields.io/badge/latest--release-0.5.3 -blue.svg?style=flat
241
241
[ badge-license ] : https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat
242
242
243
243
<!-- TAG_DEPENDENCIES -->
244
- [ badge-kotlin ] : https://img.shields.io/badge/kotlin-1.9.23 -blue.svg?logo=kotlin
245
- [ badge-endians ] : https://img.shields.io/badge/kotlincrypto.endians-0.3.0 -blue.svg
244
+ [ badge-kotlin ] : https://img.shields.io/badge/kotlin-1.9.24 -blue.svg?logo=kotlin
245
+ [ badge-endians ] : https://img.shields.io/badge/kotlincrypto.endians-0.3.1 -blue.svg
246
246
247
247
<!-- TAG_PLATFORMS -->
248
248
[ badge-platform-android ] : http://img.shields.io/badge/-android-6EDB8D.svg?style=flat
Original file line number Diff line number Diff line change @@ -30,10 +30,10 @@ POM_DEVELOPER_ID=KotlinCrypto
30
30
POM_DEVELOPER_NAME =Kotlin Crypto
31
31
POM_DEVELOPER_URL =https://github.com/KotlinCrypto/
32
32
33
- VERSION_NAME =0.5.2-SNAPSHOT
33
+ VERSION_NAME =0.5.3
34
34
# 0.1.0-alpha01 = 00 01 00 11
35
35
# 0.1.0-beta01 = 00 01 00 21
36
36
# 0.1.0-rc01 = 00 01 00 31
37
37
# 0.1.0 = 00 01 00 99
38
38
# 1.1.0 = 01 01 00 99
39
- VERSION_CODE =50299
39
+ VERSION_CODE =00050399
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ gradle-kmp-configuration = "0.3.2"
5
5
gradle-kotlin = " 1.9.24"
6
6
gradle-publish-maven = " 0.29.0"
7
7
8
- kotlincrypto-endians = " 0.3.0 "
8
+ kotlincrypto-endians = " 0.3.1 "
9
9
10
10
# tests
11
11
androidx-test-runner = " 1.5.2"
You can’t perform that action at this time.
0 commit comments