Skip to content

Commit 3fa7978

Browse files
committed
Prepare 0.3.0 release
1 parent 6e02887 commit 3fa7978

File tree

3 files changed

+30
-22
lines changed

3 files changed

+30
-22
lines changed

CHANGELOG.md

Lines changed: 21 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,27 @@
11
# CHANGELOG
22

3+
## Version 0.2.0 (2024-03-18)
4+
- Updates dependencies
5+
- Kotlin `1.9.21` -> `1.9.23`
6+
- Fix `ClassCastException` for `js.nodejs` [[#12]][12]
7+
- Fix max size exception for `js.browser` [[#12]][12]
8+
- Add experimental support for `wasmJs` & `wasmWasi` [[#12]][12]
9+
- Add support for Java9 `JPMS` via Multi-Release jar [#13][13]
10+
311
## Version 0.2.0 (2023-11-30)
4-
- Updates dependencies
5-
- Kotlin `1.8.10` -> `1.9.21`
6-
- Drops support for the following deprecated targets:
7-
- `iosArm32`
8-
- `watchosX86`
9-
- `linuxArm32Hfp`
10-
- `linuxMips32`
11-
- `linuxMipsel32`
12-
- `mingwX86`
13-
- `wasm32`
12+
- Updates dependencies
13+
- Kotlin `1.8.10` -> `1.9.21`
14+
- Drops support for the following deprecated targets:
15+
- `iosArm32`
16+
- `watchosX86`
17+
- `linuxArm32Hfp`
18+
- `linuxMips32`
19+
- `linuxMipsel32`
20+
- `mingwX86`
21+
- `wasm32`
1422

1523
## Version 0.1.0 (2023-03-07)
1624
- Initial Release
25+
26+
[12]: https://github.com/KotlinCrypto/secure-random/pull/12
27+
[13]: https://github.com/KotlinCrypto/secure-random/pull/13

README.md

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
![badge-platform-jvm]
99
![badge-platform-js]
1010
![badge-platform-js-node]
11+
![badge-platform-wasm]
1112
![badge-platform-linux]
1213
![badge-platform-macos]
1314
![badge-platform-ios]
@@ -19,18 +20,14 @@
1920
![badge-support-js-ir]
2021
![badge-support-linux-arm]
2122

22-
<!--
23-
![badge-platform-wasm]
24-
-->
25-
2623
Kotlin Multiplatform library for obtaining cryptographically
2724
secure random data from the system.
2825

2926
NOTE: For Jvm, `SecureRandom` extends `java.security.SecureRandom`
3027
for interoperability.
3128

32-
The Linux/AndroidNative implementation was Heavily inspired by the
33-
[rust-random/getrandom][url-rust-random] crate.
29+
The Linux/AndroidNative implementation was heavily inspired by
30+
[rust-random/getrandom][url-rust-random].
3431

3532
### Example Usages
3633

@@ -80,7 +77,7 @@ The best way to keep `KotlinCrypto` dependencies up to date is by using the
8077
```kotlin
8178
// build.gradle.kts
8279
dependencies {
83-
implementation("org.kotlincrypto:secure-random:0.2.0")
80+
implementation("org.kotlincrypto:secure-random:0.3.0")
8481
}
8582
```
8683

@@ -89,16 +86,16 @@ dependencies {
8986
```groovy
9087
// build.gradle
9188
dependencies {
92-
implementation "org.kotlincrypto:secure-random:0.2.0"
89+
implementation "org.kotlincrypto:secure-random:0.3.0"
9390
}
9491
```
9592

9693
<!-- TAG_VERSION -->
97-
[badge-latest-release]: https://img.shields.io/badge/latest--release-0.2.0-blue.svg?style=flat
94+
[badge-latest-release]: https://img.shields.io/badge/latest--release-0.3.0-blue.svg?style=flat
9895
[badge-license]: https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat
9996

10097
<!-- TAG_DEPENDENCIES -->
101-
[badge-kotlin]: https://img.shields.io/badge/kotlin-1.9.21-blue.svg?logo=kotlin
98+
[badge-kotlin]: https://img.shields.io/badge/kotlin-1.9.23-blue.svg?logo=kotlin
10299

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

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.2.1-SNAPSHOT
30+
VERSION_NAME=0.3.0
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=20199
36+
VERSION_CODE=30099

0 commit comments

Comments
 (0)