Skip to content

Commit 74c4e9c

Browse files
committed
Prepare 0.8.0 release
1 parent e55d354 commit 74c4e9c

4 files changed

Lines changed: 37 additions & 21 deletions

File tree

CHANGELOG.md

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

3+
## Version 0.8.0 (2025-09-19)
4+
- Updates `bitops` to `0.3.0`
5+
- Updates `core` to `0.8.0`
6+
- Updates `error` to `0.4.0`
7+
- Updates `hash` to `0.8.0`
8+
- Updates `macs` to `0.8.0`
9+
- Updates `random` to `0.6.0`
10+
- Updates `sponges` to `0.5.0`
11+
- Removes deprecated libraries/versions
12+
- version `endians`
13+
- version `secureRandom`
14+
- library `core-common`
15+
- library `endians-endians`
16+
- library `secureRandom`
17+
318
## Version 0.7.2 (2025-08-25)
419
- Updates `bitops` to `0.2.1`
520
- Updates `core` to `0.7.1`
@@ -43,8 +58,9 @@
4358
- Updates `endians` to `0.3.2`
4459
- Deprecates `endians-endians`
4560
- Functionality replaced by `bitops-endian` library
46-
- Removes `hash-md5`
47-
- Removes `macs-hmac-md5`
61+
- Removes deprecated libraries
62+
- library `hash-md5`
63+
- library `macs-hmac-md5`
4864

4965
## Version 0.5.6 (2024-12-28)
5066
- Updates `hash` to `0.5.6`
@@ -94,16 +110,16 @@
94110
- Updates `core` to `0.3.0`
95111
- Updates `hash` to `0.3.0`
96112
- Updates `macs` to `0.3.0`
97-
- Add `hash-md`
113+
- Adds `hash-md`
98114
- Replacement for `hash-md5`
99-
- Add `macs-hmac-md`
115+
- Adds `macs-hmac-md`
100116
- Replacement for `macs-hmac-md5`
101117

102118
## Version 0.2.7 (2023-06-09)
103119
- Updates `core` to `0.2.7`
104120
- Updates `hash` to `0.2.7`
105121
- Updates `macs` to `0.2.7`
106-
-
122+
107123
## Version 0.2.6 (2023-06-08)
108124
- Updates `core` to `0.2.6`
109125
- Updates `hash` to `0.2.6`
@@ -118,17 +134,17 @@
118134
- Update `core` to `0.2.4`
119135
- Update `hash` to `0.2.4`
120136
- Update `macs` to `0.2.4`
121-
- Add `macs-kmac`
137+
- Adds `macs-kmac`
122138

123139
## Version 0.2.3 (2023-04-08)
124140
- Update `core` to `0.2.3`
125141
- Update `hash` to `0.2.3`
126142
- Update `macs` to `0.2.3`
127-
- Add `core-xof`
128-
- Add `hash-sha3`
129-
- Add `macs-hmac-sha3`
130-
- Add `endians-endians`
131-
- Add `sponges-keccak`
143+
- Adds `core-xof`
144+
- Adds `hash-sha3`
145+
- Adds `macs-hmac-sha3`
146+
- Adds `endians-endians`
147+
- Adds `sponges-keccak`
132148

133149
## Version 0.2.1 (2023-03-29)
134150
- Initial Release

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.7.2")
23+
from("org.kotlincrypto:version-catalog:0.8.0")
2424
}
2525
}
2626
}
@@ -50,7 +50,7 @@ dependencies {
5050
```
5151

5252
<!-- TAG_VERSION -->
53-
[badge-latest-release]: https://img.shields.io/badge/latest--release-0.7.2-blue.svg?style=flat
53+
[badge-latest-release]: https://img.shields.io/badge/latest--release-0.8.0-blue.svg?style=flat
5454
[badge-license]: https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat
5555

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

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ POM_DEVELOPER_ID=KotlinCrypto
2727
POM_DEVELOPER_NAME=Kotlin Crypto
2828
POM_DEVELOPER_URL=https://github.com/KotlinCrypto/
2929

30-
VERSION_NAME=0.8.0-SNAPSHOT
30+
VERSION_NAME=0.8.0
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

gradle/kotlincrypto.versions.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[versions]
2-
bitops = "0.3.0-SNAPSHOT"
3-
core = "0.8.0-SNAPSHOT"
4-
error = "0.4.0-SNAPSHOT"
5-
hash = "0.8.0-SNAPSHOT"
6-
macs = "0.8.0-SNAPSHOT"
7-
random = "0.6.0-SNAPSHOT"
8-
sponges = "0.5.0-SNAPSHOT"
2+
bitops = "0.3.0"
3+
core = "0.8.0"
4+
error = "0.4.0"
5+
hash = "0.8.0"
6+
macs = "0.8.0"
7+
random = "0.6.0"
8+
sponges = "0.5.0"
99

1010
[libraries]
1111
# https://github.com/KotlinCrypto/bitops

0 commit comments

Comments
 (0)