File tree Expand file tree Collapse file tree 5 files changed +10
-14
lines changed Expand file tree Collapse file tree 5 files changed +10
-14
lines changed Original file line number Diff line number Diff line change 1
1
# CHANGELOG
2
2
3
+ ## Version 0.7.1 (2025-05-26)
4
+ - Updates ` random ` to ` 0.5.1 `
5
+
3
6
## Version 0.7.0 (2025-02-25)
4
7
- Updates ` bitops ` to ` 0.2.0 `
5
8
- Updates ` core ` to ` 0.7.0 `
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ dependencyResolutionManagement {
20
20
versionCatalogs {
21
21
create(" kotlincrypto" ) {
22
22
// https://github.com/KotlinCrypto/version-catalog/blob/master/gradle/kotlincrypto.versions.toml
23
- from(" org.kotlincrypto:version-catalog:0.7.0 " )
23
+ from(" org.kotlincrypto:version-catalog:0.7.1 " )
24
24
}
25
25
}
26
26
}
@@ -50,7 +50,7 @@ dependencies {
50
50
```
51
51
52
52
<!-- TAG_VERSION -->
53
- [ badge-latest-release ] : https://img.shields.io/badge/latest--release-0.7.0 -blue.svg?style=flat
53
+ [ badge-latest-release ] : https://img.shields.io/badge/latest--release-0.7.1 -blue.svg?style=flat
54
54
[ badge-license ] : https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat
55
55
56
56
[ url-latest-release ] : https://github.com/KotlinCrypto/version-catalog/releases/latest
Original file line number Diff line number Diff line change @@ -38,16 +38,9 @@ mavenCentralPassword=MyPassword
38
38
39
39
- Make sure you have GPG gradle config setup in ` ~/.gradle/gradle.properties ` for signing
40
40
```
41
- signing.gnupg.executable=gpg
42
- signing.gnupg.useLegacyGpg=true
43
- signing.gnupg.homeDir=/path/to/.gnupg/
44
- signing.gnupg.optionsFile=/path/to/.gnupg/gpg.conf
45
- signing.gnupg.keyName=0x61471B8AB3890961
46
- ```
47
-
48
- - Make sure GPG is picking up YubiKey to sign releases
49
- ``` bash
50
- gpg --card-status
41
+ signing.keyId=MyGPGKeyId
42
+ signing.password=MyGPGKeyPassword
43
+ signing.secretKeyRingFile=/path/to/.gnupg/MyGPGKey.gpg
51
44
```
52
45
53
46
- Perform a clean build
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ POM_DEVELOPER_ID=KotlinCrypto
27
27
POM_DEVELOPER_NAME =Kotlin Crypto
28
28
POM_DEVELOPER_URL =https://github.com/KotlinCrypto/
29
29
30
- VERSION_NAME =0.7.1-SNAPSHOT
30
+ VERSION_NAME =0.7.1
31
31
# 0.1.0-alpha01 = 00 01 00 11
32
32
# 0.1.0-beta01 = 00 01 00 21
33
33
# 0.1.0-rc01 = 00 01 00 31
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ core = "0.7.0"
4
4
error = " 0.3.0"
5
5
hash = " 0.7.0"
6
6
macs = " 0.7.0"
7
- random = " 0.5.0 "
7
+ random = " 0.5.1 "
8
8
sponges = " 0.4.0"
9
9
10
10
You can’t perform that action at this time.
0 commit comments