Skip to content

Commit

Permalink
Prepare 0.3.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
05nelsonm committed Mar 18, 2024
1 parent 6e02887 commit 3fa7978
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 22 deletions.
31 changes: 21 additions & 10 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,27 @@
# CHANGELOG

## Version 0.2.0 (2024-03-18)
- Updates dependencies
- Kotlin `1.9.21` -> `1.9.23`
- Fix `ClassCastException` for `js.nodejs` [[#12]][12]
- Fix max size exception for `js.browser` [[#12]][12]
- Add experimental support for `wasmJs` & `wasmWasi` [[#12]][12]
- Add support for Java9 `JPMS` via Multi-Release jar [#13][13]

## Version 0.2.0 (2023-11-30)
- Updates dependencies
- Kotlin `1.8.10` -> `1.9.21`
- Drops support for the following deprecated targets:
- `iosArm32`
- `watchosX86`
- `linuxArm32Hfp`
- `linuxMips32`
- `linuxMipsel32`
- `mingwX86`
- `wasm32`
- Updates dependencies
- Kotlin `1.8.10` -> `1.9.21`
- Drops support for the following deprecated targets:
- `iosArm32`
- `watchosX86`
- `linuxArm32Hfp`
- `linuxMips32`
- `linuxMipsel32`
- `mingwX86`
- `wasm32`

## Version 0.1.0 (2023-03-07)
- Initial Release

[12]: https://github.com/KotlinCrypto/secure-random/pull/12
[13]: https://github.com/KotlinCrypto/secure-random/pull/13
17 changes: 7 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
![badge-platform-jvm]
![badge-platform-js]
![badge-platform-js-node]
![badge-platform-wasm]
![badge-platform-linux]
![badge-platform-macos]
![badge-platform-ios]
Expand All @@ -19,18 +20,14 @@
![badge-support-js-ir]
![badge-support-linux-arm]

<!--
![badge-platform-wasm]
-->

Kotlin Multiplatform library for obtaining cryptographically
secure random data from the system.

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

The Linux/AndroidNative implementation was Heavily inspired by the
[rust-random/getrandom][url-rust-random] crate.
The Linux/AndroidNative implementation was heavily inspired by
[rust-random/getrandom][url-rust-random].

### Example Usages

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

Expand All @@ -89,16 +86,16 @@ dependencies {
```groovy
// build.gradle
dependencies {
implementation "org.kotlincrypto:secure-random:0.2.0"
implementation "org.kotlincrypto:secure-random:0.3.0"
}
```

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

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

<!-- TAG_PLATFORMS -->
[badge-platform-android]: http://img.shields.io/badge/-android-6EDB8D.svg?style=flat
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ POM_DEVELOPER_ID=KotlinCrypto
POM_DEVELOPER_NAME=Kotlin Crypto
POM_DEVELOPER_URL=https://github.com/KotlinCrypto/

VERSION_NAME=0.2.1-SNAPSHOT
VERSION_NAME=0.3.0
# 0.1.0-alpha01 = 00 01 00 11
# 0.1.0-beta01 = 00 01 00 21
# 0.1.0-rc01 = 00 01 00 31
# 0.1.0 = 00 01 00 99
# 1.1.0 = 01 01 00 99
VERSION_CODE=20199
VERSION_CODE=30099

0 comments on commit 3fa7978

Please sign in to comment.