File tree Expand file tree Collapse file tree 5 files changed +31
-11
lines changed
build-logic/src/main/kotlin Expand file tree Collapse file tree 5 files changed +31
-11
lines changed Original file line number Diff line number Diff line change 1
1
# CHANGELOG
2
2
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
+
3
22
## Version 0.6.1 (2025-02-09)
4
23
- Updates ` kotlincrypto.bitops ` to ` 0.1.2 ` [[ #104 ]] [ 104 ]
5
24
- Updates ` kotlincrypto.core ` to ` 0.6.1 `
173
192
[ 104 ] : https://github.com/KotlinCrypto/hash/pull/104
174
193
[ 108 ] : https://github.com/KotlinCrypto/hash/pull/108
175
194
[ 109 ] : https://github.com/KotlinCrypto/hash/pull/109
195
+ [ 111 ] : https://github.com/KotlinCrypto/hash/pull/111
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ shown below.
49
49
// build.gradle.kts
50
50
dependencies {
51
51
// 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 " ))
53
53
54
54
// define artifacts without version
55
55
@@ -77,14 +77,14 @@ dependencies {
77
77
```
78
78
79
79
<!-- 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
81
81
[ badge-license ] : https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat
82
82
83
83
<!-- 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
88
88
89
89
<!-- TAG_PLATFORMS -->
90
90
[ badge-platform-android ] : http://img.shields.io/badge/-android-6EDB8D.svg?style=flat
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ rootProject.dependencies { dokka(project(project.path)) }
26
26
27
27
extensions.configure<DokkaExtension > {
28
28
dokkaPublications.configureEach {
29
- suppressInheritedMembers .set(true )
29
+ suppressObviousFunctions .set(true )
30
30
}
31
31
32
32
dokkaSourceSets.configureEach {
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ POM_DEVELOPER_ID=KotlinCrypto
33
33
POM_DEVELOPER_NAME =Kotlin Crypto
34
34
POM_DEVELOPER_URL =https://github.com/KotlinCrypto/
35
35
36
- VERSION_NAME =0.7.0-SNAPSHOT
36
+ VERSION_NAME =0.7.0
37
37
# 0.1.0-alpha01 = 00 01 00 11
38
38
# 0.1.0-beta01 = 00 01 00 21
39
39
# 0.1.0-rc01 = 00 01 00 31
Original file line number Diff line number Diff line change @@ -15,9 +15,9 @@ gradle-kmp-configuration = "0.4.0"
15
15
gradle-kotlin = " 2.1.10"
16
16
gradle-publish-maven = " 0.30.0"
17
17
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"
21
21
22
22
[libraries ]
23
23
gradle-dokka = { module = " org.jetbrains.dokka:dokka-gradle-plugin" , version.ref = " gradle-dokka" }
You can’t perform that action at this time.
0 commit comments