File tree 3 files changed +13
-5
lines changed
3 files changed +13
-5
lines changed Original file line number Diff line number Diff line change 1
1
# CHANGELOG
2
2
3
+ ## Version 0.5.3 (2024-12-19)
4
+ - Adds benchmarking to repository [[ #64 ]] [ 64 ]
5
+ - Refactors ` Digest ` internals (performance improvements) [[ #66 ]] [ 66 ]
6
+ - Changes module ` :common ` name to ` :core ` to be more in line with its
7
+ package name of ` org.kotlincrypto.core `
8
+ - Publication coordinates have changed from ` org.kotlincrypto.core:common `
9
+ to ` org.kotlincrypto.core:core `
10
+
3
11
## Version 0.5.3 (2024-08-31)
4
12
- Updates ` kotlin ` to ` 1.9.24 ` [[ #61 ]] [ 61 ]
5
13
- Updates ` endians ` to ` 0.3.1 ` [[ #61 ]] [ 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.3 "
220
+ val core = " 0.5.4 "
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,15 +229,15 @@ dependencies {
229
229
``` groovy
230
230
// build.gradle
231
231
dependencies {
232
- def core = "0.5.3 "
232
+ def core = "0.5.4 "
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.3 -blue.svg?style=flat
240
+ [ badge-latest-release ] : https://img.shields.io/badge/latest--release-0.5.4 -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 -->
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.6.0-SNAPSHOT
33
+ VERSION_NAME =0.5.4
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 =00060099
39
+ VERSION_CODE =00050499
You can’t perform that action at this time.
0 commit comments