Skip to content

Commit bb5a031

Browse files
committed
Prepare 0.8.0 release
1 parent b683cd0 commit bb5a031

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

CHANGELOG.md

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

3+
## Version 0.8.0 (2025-09-19)
4+
- Updates `kotlin` to `2.2.20` [[#127]][127]
5+
- Updates `kotlincrypto.error` to `0.4.0` [[#127]][127]
6+
- Lower supported `KotlinVersion` to `1.8` [[#128]][128]
7+
38
## Version 0.7.1 (2025-08-25)
49
- Updates `kotlin` to `2.2.10` [[#126]][126]
510
- Updates `kotlincrypto.error` to `0.3.1`
@@ -201,3 +206,5 @@
201206
[122]: https://github.com/KotlinCrypto/core/pull/122
202207
[124]: https://github.com/KotlinCrypto/core/pull/124
203208
[126]: https://github.com/KotlinCrypto/core/pull/126
209+
[127]: https://github.com/KotlinCrypto/core/pull/127
210+
[128]: https://github.com/KotlinCrypto/core/pull/128

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,20 +66,20 @@ The best way to keep `KotlinCrypto` dependencies up to date is by using the
6666
```kotlin
6767
// build.gradle.kts
6868
dependencies {
69-
val core = "0.7.1"
69+
val core = "0.8.0"
7070
implementation("org.kotlincrypto.core:digest:$core")
7171
implementation("org.kotlincrypto.core:mac:$core")
7272
implementation("org.kotlincrypto.core:xof:$core")
7373
}
7474
```
7575

7676
<!-- TAG_VERSION -->
77-
[badge-latest-release]: https://img.shields.io/badge/latest--release-0.7.1-blue.svg?style=flat
77+
[badge-latest-release]: https://img.shields.io/badge/latest--release-0.8.0-blue.svg?style=flat
7878
[badge-license]: https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat
7979

8080
<!-- TAG_DEPENDENCIES -->
8181
[badge-kotlin]: https://img.shields.io/badge/kotlin-2.2.20-blue.svg?logo=kotlin
82-
[badge-error]: https://img.shields.io/badge/kotlincrypto.error-0.4.0--SNAPSHOT-blue.svg
82+
[badge-error]: https://img.shields.io/badge/kotlincrypto.error-0.4.0-blue.svg
8383

8484
<!-- TAG_PLATFORMS -->
8585
[badge-platform-android]: http://img.shields.io/badge/-android-6EDB8D.svg?style=flat

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.8.0-SNAPSHOT
36+
VERSION_NAME=0.8.0
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.20"
1111
gradle-publish-maven = "0.34.0"
1212

13-
kotlincrypto-error = "0.4.0-SNAPSHOT"
13+
kotlincrypto-error = "0.4.0"
1414

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

0 commit comments

Comments
 (0)