Skip to content

Commit 362eed1

Browse files
committed
Prepare 0.5.5 release
1 parent a104909 commit 362eed1

File tree

6 files changed

+16
-10
lines changed

6 files changed

+16
-10
lines changed

CHANGELOG.md

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

3+
## Version 0.5.5 (2024-12-20)
4+
- Updates `core` to `0.5.5`
5+
- Updates `hash` to `0.5.5`
6+
- Updates `macs` to `0.5.5`
7+
- Updates `sponges` to `0.3.3`
8+
39
## Version 0.5.4 (2024-12-19)
410
- Updates `core` to `0.5.4`
511
- Updates `hash` to `0.5.4`

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.4")
23+
from("org.kotlincrypto:version-catalog:0.5.5")
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.4-blue.svg?style=flat
43+
[badge-latest-release]: https://img.shields.io/badge/latest--release-0.5.5-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

RELEASING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ gpg --card-status
5353
- Perform a clean build
5454
```bash
5555
./gradlew clean
56-
./gradlew build
56+
./gradlew build --no-build-cache
5757
```
5858

5959
- Publish

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.5
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=00050599

gradle/kotlincrypto.versions.toml

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

99
[libraries]
1010
# https://github.com/KotlinCrypto/core

stub/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ kmpConfiguration {
6161
common {
6262
sourceSetMain {
6363
dependencies {
64-
implementation(kotlincrypto.core.common)
64+
implementation(kotlincrypto.core.core)
6565
implementation(kotlincrypto.core.digest)
6666
implementation(kotlincrypto.core.mac)
6767
implementation(kotlincrypto.core.xof)

0 commit comments

Comments
 (0)