Skip to content

Commit 923953a

Browse files
committed
Prepare 0.6.0 release
1 parent 9db0e5f commit 923953a

File tree

4 files changed

+15
-5
lines changed

4 files changed

+15
-5
lines changed

CHANGELOG.md

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

3+
## Version 0.6.0 (2025-09-19)
4+
- Updates `kotlin` to `2.2.20` [[#46]][46]
5+
- Updates `kotlincrypto.error` to `0.4.0` [[#46]][46]
6+
- Lower supported `KotlinVersion` to `1.8` [[#48]][48]
7+
- `wasmJs` requires a minimum `KotlinVersion` of `1.9`
8+
- Commonize `js` & `wasmJs` code via common source set `jsWasmJs` [[#49]][49]
9+
310
## Version 0.5.2 (2025-08-25)
411
- Updates `kotlin` to `2.2.10` [[#41]][41]
512
- Updates `kotlincrypto.error` to `0.3.1`
@@ -72,3 +79,6 @@
7279
[41]: https://github.com/KotlinCrypto/random/pull/41
7380
[44]: https://github.com/KotlinCrypto/random/pull/44
7481
[45]: https://github.com/KotlinCrypto/random/pull/45
82+
[46]: https://github.com/KotlinCrypto/random/pull/46
83+
[48]: https://github.com/KotlinCrypto/random/pull/48
84+
[49]: https://github.com/KotlinCrypto/random/pull/49

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,17 +42,17 @@ The best way to keep `KotlinCrypto` dependencies up to date is by using the
4242
```kotlin
4343
// build.gradle.kts
4444
dependencies {
45-
implementation("org.kotlincrypto.random:crypto-rand:0.5.2")
45+
implementation("org.kotlincrypto.random:crypto-rand:0.6.0")
4646
}
4747
```
4848

4949
<!-- TAG_VERSION -->
50-
[badge-latest-release]: https://img.shields.io/badge/latest--release-0.5.2-blue.svg?style=flat
50+
[badge-latest-release]: https://img.shields.io/badge/latest--release-0.6.0-blue.svg?style=flat
5151
[badge-license]: https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat
5252

5353
<!-- TAG_DEPENDENCIES -->
5454
[badge-kotlin]: https://img.shields.io/badge/kotlin-2.2.20-blue.svg?logo=kotlin
55-
[badge-error]: https://img.shields.io/badge/kotlincrypto.error-0.4.0--SNAPSHOT-blue.svg
55+
[badge-error]: https://img.shields.io/badge/kotlincrypto.error-0.4.0-blue.svg
5656

5757
<!-- TAG_PLATFORMS -->
5858
[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
@@ -34,7 +34,7 @@ POM_DEVELOPER_ID=KotlinCrypto
3434
POM_DEVELOPER_NAME=Kotlin Crypto
3535
POM_DEVELOPER_URL=https://github.com/KotlinCrypto/
3636

37-
VERSION_NAME=0.6.0-SNAPSHOT
37+
VERSION_NAME=0.6.0
3838
# 0.1.0-alpha01 = 00 01 00 11
3939
# 0.1.0-beta01 = 00 01 00 21
4040
# 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
@@ -12,7 +12,7 @@ gradle-kotlin = "2.2.20"
1212
gradle-publish-maven = "0.34.0"
1313

1414
kmp-process = "0.3.2"
15-
kotlincrypto-error = "0.4.0-SNAPSHOT"
15+
kotlincrypto-error = "0.4.0"
1616

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

0 commit comments

Comments
 (0)