Skip to content

Commit e3d38a2

Browse files
committed
Prepare 0.3.2 release
1 parent 19a0002 commit e3d38a2

File tree

5 files changed

+16
-8
lines changed

5 files changed

+16
-8
lines changed

CHANGELOG.md

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

3+
## Version 0.3.2 (2024-08-31)
4+
- Updates dependencies
5+
- Kotlin `1.9.23` -> `1.9.24`
6+
- Fixes multiplatform metadata manifest `unique_name` parameter for
7+
all source sets to be truly unique. [[#19]][19]
8+
- Updates jvm `.kotlin_module` with truly unique file name. [[#19]][19]
9+
310
## Version 0.3.1 (2024-03-20)
411
- Fix `js.nodejs` and `wasmJs.nodejs` array type exception [[#14]][14]
512
- Ensure `wasmWasi` temporary array is back-filled when copying bytes [[#16]][16]
@@ -31,3 +38,4 @@
3138
[13]: https://github.com/KotlinCrypto/secure-random/pull/13
3239
[14]: https://github.com/KotlinCrypto/secure-random/pull/14
3340
[16]: https://github.com/KotlinCrypto/secure-random/pull/16
41+
[19]: https://github.com/KotlinCrypto/secure-random/pull/19

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ The best way to keep `KotlinCrypto` dependencies up to date is by using the
7777
```kotlin
7878
// build.gradle.kts
7979
dependencies {
80-
implementation("org.kotlincrypto:secure-random:0.3.1")
80+
implementation("org.kotlincrypto:secure-random:0.3.2")
8181
}
8282
```
8383

@@ -86,16 +86,16 @@ dependencies {
8686
```groovy
8787
// build.gradle
8888
dependencies {
89-
implementation "org.kotlincrypto:secure-random:0.3.1"
89+
implementation "org.kotlincrypto:secure-random:0.3.2"
9090
}
9191
```
9292

9393
<!-- TAG_VERSION -->
94-
[badge-latest-release]: https://img.shields.io/badge/latest--release-0.3.1-blue.svg?style=flat
94+
[badge-latest-release]: https://img.shields.io/badge/latest--release-0.3.2-blue.svg?style=flat
9595
[badge-license]: https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat
9696

9797
<!-- TAG_DEPENDENCIES -->
98-
[badge-kotlin]: https://img.shields.io/badge/kotlin-1.9.23-blue.svg?logo=kotlin
98+
[badge-kotlin]: https://img.shields.io/badge/kotlin-1.9.24-blue.svg?logo=kotlin
9999

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

build-logic/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ plugins {
2020
dependencies {
2121
implementation(libs.gradle.kmp.configuration)
2222
implementation(libs.gradle.kotlin)
23-
implementation(libs.gradle.maven.publish)
23+
implementation(libs.gradle.publish.maven)
2424
}

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ POM_DEVELOPER_ID=KotlinCrypto
2727
POM_DEVELOPER_NAME=Kotlin Crypto
2828
POM_DEVELOPER_URL=https://github.com/KotlinCrypto/
2929

30-
VERSION_NAME=0.3.2-SNAPSHOT
30+
VERSION_NAME=0.3.2
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
3434
# 0.1.0 = 00 01 00 99
3535
# 1.1.0 = 01 01 00 99
36-
VERSION_CODE=30299
36+
VERSION_CODE=00030299

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ kotlinx-coroutines = "1.8.1"
1010
[libraries]
1111
gradle-kmp-configuration = { module = "io.matthewnelson:gradle-kmp-configuration-plugin", version.ref = "gradle-kmp-configuration" }
1212
gradle-kotlin = { module = "org.jetbrains.kotlin:kotlin-gradle-plugin", version.ref = "gradle-kotlin" }
13-
gradle-maven-publish = { module = "com.vanniktech:gradle-maven-publish-plugin", version.ref = "gradle-publish-maven" }
13+
gradle-publish-maven = { module = "com.vanniktech:gradle-maven-publish-plugin", version.ref = "gradle-publish-maven" }
1414

1515
# tests
1616
kotlinx-coroutines-test = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-test", version.ref = "kotlinx-coroutines" }

0 commit comments

Comments
 (0)