File tree Expand file tree Collapse file tree 5 files changed +16
-8
lines changed Expand file tree Collapse file tree 5 files changed +16
-8
lines changed Original file line number Diff line number Diff line change 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 ]
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
Original file line number Diff line number Diff 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
7979dependencies {
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
8888dependencies {
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
Original file line number Diff line number Diff line change @@ -20,5 +20,5 @@ plugins {
2020dependencies {
2121 implementation(libs.gradle.kmp.configuration)
2222 implementation(libs.gradle.kotlin)
23- implementation(libs.gradle.maven. publish)
23+ implementation(libs.gradle.publish.maven )
2424}
Original file line number Diff line number Diff line change @@ -27,10 +27,10 @@ POM_DEVELOPER_ID=KotlinCrypto
2727POM_DEVELOPER_NAME =Kotlin Crypto
2828POM_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
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ kotlinx-coroutines = "1.8.1"
1010[libraries ]
1111gradle-kmp-configuration = { module = " io.matthewnelson:gradle-kmp-configuration-plugin" , version.ref = " gradle-kmp-configuration" }
1212gradle-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
1616kotlinx-coroutines-test = { module = " org.jetbrains.kotlinx:kotlinx-coroutines-test" , version.ref = " kotlinx-coroutines" }
You can’t perform that action at this time.
0 commit comments