Skip to content

Commit be8faed

Browse files
committed
Prepare 0.7.0 release
1 parent 34701d6 commit be8faed

File tree

5 files changed

+31
-11
lines changed

5 files changed

+31
-11
lines changed

CHANGELOG.md

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

3+
## Version 0.7.0 (2025-02-25)
4+
- Updates `kotlin` to `2.1.10` [[#111]][111]
5+
- Updates `kotlincrypto.bitops` to `0.2.0` [[#111]][111]
6+
- Updates `kotlincrypto.core` to `0.7.0` [[#111]][111]
7+
- Updates `kotlincrypto.sponges` to `0.4.0` [[#111]][111]
8+
- The following now throw `InvalidParameterException` instead of `IllegalArgumentException` on
9+
instantiation when a parameter is inappropriate [[#111]][111]:
10+
- `blake2/BLAKE2b`
11+
- `blake2/BLAKE2s`
12+
- `sha2/SHA512t`
13+
- `sha3/CSHAKE128`
14+
- `sha3/CSHAKE256`
15+
- `sha3/ParallelHash128`
16+
- `sha3/ParallelHash256`
17+
- `sha3/SHAKE128`
18+
- `sha3/SHAKE256`
19+
- `sha3/TuppleHash128`
20+
- `sha3/TuppleHash256`
21+
322
## Version 0.6.1 (2025-02-09)
423
- Updates `kotlincrypto.bitops` to `0.1.2` [[#104]][104]
524
- Updates `kotlincrypto.core` to `0.6.1`
@@ -173,3 +192,4 @@
173192
[104]: https://github.com/KotlinCrypto/hash/pull/104
174193
[108]: https://github.com/KotlinCrypto/hash/pull/108
175194
[109]: https://github.com/KotlinCrypto/hash/pull/109
195+
[111]: https://github.com/KotlinCrypto/hash/pull/111

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ shown below.
4949
// build.gradle.kts
5050
dependencies {
5151
// define the BOM and its version
52-
implementation(platform("org.kotlincrypto.hash:bom:0.6.1"))
52+
implementation(platform("org.kotlincrypto.hash:bom:0.7.0"))
5353

5454
// define artifacts without version
5555

@@ -77,14 +77,14 @@ dependencies {
7777
```
7878

7979
<!-- TAG_VERSION -->
80-
[badge-latest-release]: https://img.shields.io/badge/latest--release-0.6.1-blue.svg?style=flat
80+
[badge-latest-release]: https://img.shields.io/badge/latest--release-0.7.0-blue.svg?style=flat
8181
[badge-license]: https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat
8282

8383
<!-- TAG_DEPENDENCIES -->
84-
[badge-kotlin]: https://img.shields.io/badge/kotlin-1.9.24-blue.svg?logo=kotlin
85-
[badge-bitops]: https://img.shields.io/badge/kotlincrypto.bitops-0.1.2-blue.svg
86-
[badge-core]: https://img.shields.io/badge/kotlincrypto.core-0.6.1-blue.svg
87-
[badge-sponges]: https://img.shields.io/badge/kotlincrypto.sponges-0.3.4-blue.svg
84+
[badge-kotlin]: https://img.shields.io/badge/kotlin-2.1.10-blue.svg?logo=kotlin
85+
[badge-bitops]: https://img.shields.io/badge/kotlincrypto.bitops-0.2.0-blue.svg
86+
[badge-core]: https://img.shields.io/badge/kotlincrypto.core-0.7.0-blue.svg
87+
[badge-sponges]: https://img.shields.io/badge/kotlincrypto.sponges-0.4.0-blue.svg
8888

8989
<!-- TAG_PLATFORMS -->
9090
[badge-platform-android]: http://img.shields.io/badge/-android-6EDB8D.svg?style=flat

build-logic/src/main/kotlin/dokka.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ rootProject.dependencies { dokka(project(project.path)) }
2626

2727
extensions.configure<DokkaExtension> {
2828
dokkaPublications.configureEach {
29-
suppressInheritedMembers.set(true)
29+
suppressObviousFunctions.set(true)
3030
}
3131

3232
dokkaSourceSets.configureEach {

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ POM_DEVELOPER_ID=KotlinCrypto
3333
POM_DEVELOPER_NAME=Kotlin Crypto
3434
POM_DEVELOPER_URL=https://github.com/KotlinCrypto/
3535

36-
VERSION_NAME=0.7.0-SNAPSHOT
36+
VERSION_NAME=0.7.0
3737
# 0.1.0-alpha01 = 00 01 00 11
3838
# 0.1.0-beta01 = 00 01 00 21
3939
# 0.1.0-rc01 = 00 01 00 31

gradle/libs.versions.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ gradle-kmp-configuration = "0.4.0"
1515
gradle-kotlin = "2.1.10"
1616
gradle-publish-maven = "0.30.0"
1717

18-
kotlincrypto-bitops = "0.2.0-SNAPSHOT"
19-
kotlincrypto-core = "0.7.0-SNAPSHOT"
20-
kotlincrypto-sponges = "0.4.0-SNAPSHOT"
18+
kotlincrypto-bitops = "0.2.0"
19+
kotlincrypto-core = "0.7.0"
20+
kotlincrypto-sponges = "0.4.0"
2121

2222
[libraries]
2323
gradle-dokka = { module = "org.jetbrains.dokka:dokka-gradle-plugin", version.ref = "gradle-dokka" }

0 commit comments

Comments
 (0)