File tree 5 files changed +16
-7
lines changed
build-logic/src/main/kotlin
5 files changed +16
-7
lines changed Original file line number Diff line number Diff line change 1
1
# CHANGELOG
2
2
3
+ ## Version 0.5.0 (2025-02-25)
4
+ - Replaces ` SecRandomCopyBytes ` usage with ` CCRandomGenerateBytes ` for ` Darwin ` [[ #33 ]] [ 33 ]
5
+ - Updates ` kotlin ` to ` 2.1.10 ` [[ #34 ]] [ 34 ]
6
+ - Updates ` kotlincrypto.error ` to ` 0.3.0 ` [[ #34 ]] [ 34 ]
7
+ - Removes module ` :secure-random ` [[ #31 ]] [ 31 ]
8
+
3
9
## Version 0.4.0 (2025-02-09)
4
10
- Adds module ` crypto-rand ` with new ` CryptoRand ` implementation [[ #28 ]] [ 28 ] [[ #29 ]] [ 29 ]
5
11
- Deprecates ` SecureRandom ` in favor of ` CryptoRand ` [[ #28 ]] [ 28 ]
49
55
[ 26 ] : https://github.com/KotlinCrypto/random/pull/26
50
56
[ 28 ] : https://github.com/KotlinCrypto/random/pull/28
51
57
[ 29 ] : https://github.com/KotlinCrypto/random/pull/29
58
+ [ 31 ] : https://github.com/KotlinCrypto/random/pull/31
59
+ [ 33 ] : https://github.com/KotlinCrypto/random/pull/33
60
+ [ 34 ] : https://github.com/KotlinCrypto/random/pull/34
Original file line number Diff line number Diff line change @@ -44,17 +44,17 @@ The best way to keep `KotlinCrypto` dependencies up to date is by using the
44
44
``` kotlin
45
45
// build.gradle.kts
46
46
dependencies {
47
- implementation(" org.kotlincrypto.random:crypto-rand:0.4 .0" )
47
+ implementation(" org.kotlincrypto.random:crypto-rand:0.5 .0" )
48
48
}
49
49
```
50
50
51
51
<!-- TAG_VERSION -->
52
- [ badge-latest-release ] : https://img.shields.io/badge/latest--release-0.4 .0-blue.svg?style=flat
52
+ [ badge-latest-release ] : https://img.shields.io/badge/latest--release-0.5 .0-blue.svg?style=flat
53
53
[ badge-license ] : https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat
54
54
55
55
<!-- TAG_DEPENDENCIES -->
56
- [ badge-kotlin ] : https://img.shields.io/badge/kotlin-1.9.24 -blue.svg?logo=kotlin
57
- [ badge-error ] : https://img.shields.io/badge/kotlincrypto.error-0.2 .0-blue.svg
56
+ [ badge-kotlin ] : https://img.shields.io/badge/kotlin-2.1.10 -blue.svg?logo=kotlin
57
+ [ badge-error ] : https://img.shields.io/badge/kotlincrypto.error-0.3 .0-blue.svg
58
58
59
59
<!-- TAG_PLATFORMS -->
60
60
[ 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 @@ -30,7 +30,7 @@ POM_DEVELOPER_ID=KotlinCrypto
30
30
POM_DEVELOPER_NAME =Kotlin Crypto
31
31
POM_DEVELOPER_URL =https://github.com/KotlinCrypto/
32
32
33
- VERSION_NAME =0.5.0-SNAPSHOT
33
+ VERSION_NAME =0.5.0
34
34
# 0.1.0-alpha01 = 00 01 00 11
35
35
# 0.1.0-beta01 = 00 01 00 21
36
36
# 0.1.0-rc01 = 00 01 00 31
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ gradle-kmp-configuration = "0.4.0"
6
6
gradle-kotlin = " 2.1.10"
7
7
gradle-publish-maven = " 0.30.0"
8
8
9
- kotlincrypto-error = " 0.3.0-SNAPSHOT "
9
+ kotlincrypto-error = " 0.3.0"
10
10
11
11
[libraries ]
12
12
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