Skip to content

Commit 9036f68

Browse files
committed
Prepare 0.7.1 release
1 parent 10ae558 commit 9036f68

File tree

5 files changed

+10
-14
lines changed

5 files changed

+10
-14
lines changed

CHANGELOG.md

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

3+
## Version 0.7.1 (2025-05-26)
4+
- Updates `random` to `0.5.1`
5+
36
## Version 0.7.0 (2025-02-25)
47
- Updates `bitops` to `0.2.0`
58
- Updates `core` to `0.7.0`

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.0")
23+
from("org.kotlincrypto:version-catalog:0.7.1")
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.0-blue.svg?style=flat
53+
[badge-latest-release]: https://img.shields.io/badge/latest--release-0.7.1-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

RELEASING.md

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -38,16 +38,9 @@ mavenCentralPassword=MyPassword
3838

3939
- Make sure you have GPG gradle config setup in `~/.gradle/gradle.properties` for signing
4040
```
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
5144
```
5245

5346
- Perform a clean build

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.7.1-SNAPSHOT
30+
VERSION_NAME=0.7.1
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ core = "0.7.0"
44
error = "0.3.0"
55
hash = "0.7.0"
66
macs = "0.7.0"
7-
random = "0.5.0"
7+
random = "0.5.1"
88
sponges = "0.4.0"
99

1010

0 commit comments

Comments
 (0)