Skip to content

Commit 5b86624

Browse files
committed
Prepare 0.5.4 release
1 parent 0d5d36e commit 5b86624

File tree

4 files changed

+18
-10
lines changed

4 files changed

+18
-10
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
11
# CHANGELOG
22

3+
## Version 0.5.4 (2024-12-19)
4+
- Updates `core` to `0.5.4`
5+
- Updates `hash` to `0.5.4`
6+
- Updates `macs` to `0.5.4`
7+
- Updates `sponges` to `0.3.2`
8+
39
## Version 0.5.3 (2024-08-31)
410
- Updates `core` to `0.5.3`
511
- Updates `endians` to `0.3.1`
612
- Updates `hash` to `0.5.3`
713
- Updates `macs` to `0.5.3`
814
- Updates `secureRandom` to `0.3.2`
9-
- Updates `sponges` to `0.3.2`
15+
- Updates `sponges` to `0.3.1`
1016

1117
## Version 0.5.2 (2024-03-20)
1218
- Updates `secureRandom` to `0.3.1`

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ dependencyResolutionManagement {
2020
versionCatalogs {
2121
create("kotlincrypto") {
2222
// https://github.com/KotlinCrypto/version-catalog/blob/master/gradle/kotlincrypto.versions.toml
23-
from("org.kotlincrypto:version-catalog:0.5.3")
23+
from("org.kotlincrypto:version-catalog:0.5.4")
2424
}
2525
}
2626
}
@@ -40,7 +40,7 @@ dependencies {
4040
```
4141

4242
<!-- TAG_VERSION -->
43-
[badge-latest-release]: https://img.shields.io/badge/latest--release-0.5.3-blue.svg?style=flat
43+
[badge-latest-release]: https://img.shields.io/badge/latest--release-0.5.4-blue.svg?style=flat
4444
[badge-license]: https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat
4545

4646
[url-latest-release]: https://github.com/KotlinCrypto/version-catalog/releases/latest

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ POM_DEVELOPER_ID=KotlinCrypto
2727
POM_DEVELOPER_NAME=Kotlin Crypto
2828
POM_DEVELOPER_URL=https://github.com/KotlinCrypto/
2929

30-
VERSION_NAME=0.6.0-SNAPSHOT
30+
VERSION_NAME=0.5.4
3131
# 0.1.0-alpha01 = 00 01 00 11
3232
# 0.1.0-beta01 = 00 01 00 21
3333
# 0.1.0-rc01 = 00 01 00 31
3434
# 0.1.0 = 00 01 00 99
3535
# 1.1.0 = 01 01 00 99
36-
VERSION_CODE=00060099
36+
VERSION_CODE=00050499

gradle/kotlincrypto.versions.toml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[versions]
2-
core = "0.5.3"
2+
core = "0.5.4"
33
endians = "0.3.1"
4-
hash = "0.5.3"
5-
macs = "0.5.3"
4+
hash = "0.5.4"
5+
macs = "0.5.4"
66
secureRandom = "0.3.2"
7-
sponges = "0.3.1"
7+
sponges = "0.3.2"
88

99
[libraries]
1010
# https://github.com/KotlinCrypto/core
11-
core-common = { module = "org.kotlincrypto.core:common", version.ref = "core" }
11+
core-core = { module = "org.kotlincrypto.core:core", version.ref = "core" }
1212
core-digest = { module = "org.kotlincrypto.core:digest", version.ref = "core" }
1313
core-mac = { module = "org.kotlincrypto.core:mac", version.ref = "core" }
1414
core-xof = { module = "org.kotlincrypto.core:xof", version.ref = "core" }
@@ -40,7 +40,9 @@ sponges-keccak = { module = "org.kotlincrypto.sponges:keccak", version.ref = "s
4040
# Will cease to be published next major version release and subsequently removed from the catalog
4141
#
4242
# Use instead:
43+
# core-core
4344
# hash-md
4445
# macs-hmac-md
46+
core-common = { module = "org.kotlincrypto.core:core", version.ref = "core" }
4547
hash-md5 = { module = "org.kotlincrypto.hash:md5", version.ref = "hash" }
4648
macs-hmac-md5 = { module = "org.kotlincrypto.macs:hmac-md5", version.ref = "macs" }

0 commit comments

Comments
 (0)