Skip to content

Commit caa1dfd

Browse files
committed
Prepare 0.5.5 release
1 parent b93b188 commit caa1dfd

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

CHANGELOG.md

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

3+
## Version 0.5.5 (2024-12-20)
4+
- Fixes optimization issues with `Digest.update` internals [[#70]][70]
5+
36
## Version 0.5.4 (2024-12-19)
47
- Adds benchmarking to repository [[#64]][64]
58
- Refactors `Digest` internals (performance improvements) [[#66]][66]
@@ -131,3 +134,6 @@
131134
[56]: https://github.com/KotlinCrypto/core/pull/56
132135
[58]: https://github.com/KotlinCrypto/core/pull/58
133136
[61]: https://github.com/KotlinCrypto/core/pull/61
137+
[64]: https://github.com/KotlinCrypto/core/pull/64
138+
[66]: https://github.com/KotlinCrypto/core/pull/66
139+
[70]: https://github.com/KotlinCrypto/core/pull/70

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ The best way to keep `KotlinCrypto` dependencies up to date is by using the
217217
```kotlin
218218
// build.gradle.kts
219219
dependencies {
220-
val core = "0.5.4"
220+
val core = "0.5.5"
221221
implementation("org.kotlincrypto.core:digest:$core")
222222
implementation("org.kotlincrypto.core:mac:$core")
223223
implementation("org.kotlincrypto.core:xof:$core")
@@ -229,15 +229,15 @@ dependencies {
229229
```groovy
230230
// build.gradle
231231
dependencies {
232-
def core = "0.5.4"
232+
def core = "0.5.5"
233233
implementation "org.kotlincrypto.core:digest:$core"
234234
implementation "org.kotlincrypto.core:mac:$core"
235235
implementation "org.kotlincrypto.core:xof:$core"
236236
}
237237
```
238238

239239
<!-- TAG_VERSION -->
240-
[badge-latest-release]: https://img.shields.io/badge/latest--release-0.5.4-blue.svg?style=flat
240+
[badge-latest-release]: https://img.shields.io/badge/latest--release-0.5.5-blue.svg?style=flat
241241
[badge-license]: https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat
242242

243243
<!-- TAG_DEPENDENCIES -->

gradle.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ POM_DEVELOPER_ID=KotlinCrypto
3030
POM_DEVELOPER_NAME=Kotlin Crypto
3131
POM_DEVELOPER_URL=https://github.com/KotlinCrypto/
3232

33-
VERSION_NAME=0.6.0-SNAPSHOT
33+
VERSION_NAME=0.5.5
3434
# 0.1.0-alpha01 = 00 01 00 11
3535
# 0.1.0-beta01 = 00 01 00 21
3636
# 0.1.0-rc01 = 00 01 00 31
3737
# 0.1.0 = 00 01 00 99
3838
# 1.1.0 = 01 01 00 99
39-
VERSION_CODE=00060099
39+
VERSION_CODE=00050599

0 commit comments

Comments
 (0)