Skip to content

Commit ad4b311

Browse files
committed
Prepare 0.7.1 release
1 parent 822f433 commit ad4b311

File tree

5 files changed

+15
-13
lines changed

5 files changed

+15
-13
lines changed

CHANGELOG.md

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

3+
## Version 0.7.1 (2025-08-25)
4+
- Updates `kotlin` to `2.2.10` [[#126]][126]
5+
- Updates `kotlincrypto.error` to `0.3.1`
6+
37
## Version 0.7.0 (2025-02-25)
48
- Updates `kotlin` to `2.1.10` [[#122]][122]
59
- Updates `kotlincrypto.error` to `0.3.0` [[#122]][122]
@@ -196,3 +200,4 @@
196200
[118]: https://github.com/KotlinCrypto/core/pull/118
197201
[122]: https://github.com/KotlinCrypto/core/pull/122
198202
[124]: https://github.com/KotlinCrypto/core/pull/124
203+
[126]: https://github.com/KotlinCrypto/core/pull/126

README.md

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
![badge-platform-watchos]
1818
![badge-platform-windows]
1919
![badge-support-android-native]
20-
![badge-support-apple-silicon]
21-
![badge-support-js-ir]
2220
![badge-support-linux-arm]
2321

2422
Low level core cryptographic components for Kotlin Multiplatform
@@ -68,20 +66,20 @@ The best way to keep `KotlinCrypto` dependencies up to date is by using the
6866
```kotlin
6967
// build.gradle.kts
7068
dependencies {
71-
val core = "0.7.0"
69+
val core = "0.7.1"
7270
implementation("org.kotlincrypto.core:digest:$core")
7371
implementation("org.kotlincrypto.core:mac:$core")
7472
implementation("org.kotlincrypto.core:xof:$core")
7573
}
7674
```
7775

7876
<!-- TAG_VERSION -->
79-
[badge-latest-release]: https://img.shields.io/badge/latest--release-0.7.0-blue.svg?style=flat
77+
[badge-latest-release]: https://img.shields.io/badge/latest--release-0.7.1-blue.svg?style=flat
8078
[badge-license]: https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat
8179

8280
<!-- TAG_DEPENDENCIES -->
83-
[badge-kotlin]: https://img.shields.io/badge/kotlin-2.1.10-blue.svg?logo=kotlin
84-
[badge-error]: https://img.shields.io/badge/kotlincrypto.error-0.3.0-blue.svg
81+
[badge-kotlin]: https://img.shields.io/badge/kotlin-2.2.10-blue.svg?logo=kotlin
82+
[badge-error]: https://img.shields.io/badge/kotlincrypto.error-0.3.1-blue.svg
8583

8684
<!-- TAG_PLATFORMS -->
8785
[badge-platform-android]: http://img.shields.io/badge/-android-6EDB8D.svg?style=flat
@@ -96,10 +94,7 @@ dependencies {
9694
[badge-platform-wasm]: https://img.shields.io/badge/-wasm-624FE8.svg?style=flat
9795
[badge-platform-windows]: http://img.shields.io/badge/-windows-4D76CD.svg?style=flat
9896
[badge-support-android-native]: http://img.shields.io/badge/support-[AndroidNative]-6EDB8D.svg?style=flat
99-
[badge-support-apple-silicon]: http://img.shields.io/badge/support-[AppleSilicon]-43BBFF.svg?style=flat
100-
[badge-support-js-ir]: https://img.shields.io/badge/support-[js--IR]-AAC4E0.svg?style=flat
10197
[badge-support-linux-arm]: http://img.shields.io/badge/support-[LinuxArm]-2D3F6C.svg?style=flat
102-
[badge-support-linux-mips]: http://img.shields.io/badge/support-[LinuxMIPS]-2D3F6C.svg?style=flat
10398

10499
[url-latest-release]: https://github.com/KotlinCrypto/core/releases/latest
105100
[url-license]: https://www.apache.org/licenses/LICENSE-2.0.txt

RELEASING.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1-
# Releasing
1+
# RELEASING
22

3-
The release process is documented [HERE](https://github.com/KotlinCrypto/documentation/blob/master/RELEASING.md)
3+
See [KotlinCrypto/documentation/RELEASING.md][url-kotlincrypto-releasing]
4+
5+
[url-kotlincrypto-releasing]: https://github.com/KotlinCrypto/documentation/blob/master/RELEASING.md

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.1-SNAPSHOT
36+
VERSION_NAME=0.7.1
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ gradle-kmp-configuration = "0.5.2"
1010
gradle-kotlin = "2.2.10"
1111
gradle-publish-maven = "0.34.0"
1212

13-
kotlincrypto-error = "0.3.0" # TODO: Update
13+
kotlincrypto-error = "0.3.1"
1414

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

0 commit comments

Comments
 (0)