Skip to content

Commit

Permalink
Prepare 0.3.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
05nelsonm committed Mar 20, 2024
1 parent b3651e6 commit 2a3eebd
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# CHANGELOG

## Version 0.2.0 (2024-03-18)
## Version 0.3.1 (2024-03-20)
- Fix `js.nodejs` and `wasmJs.nodejs` array type exception [[#14]][14]
- Ensure `wasmWasi` temporary array is back-filled when copying bytes [[#16]][16]

## Version 0.3.0 (2024-03-18)
- Updates dependencies
- Kotlin `1.9.21` -> `1.9.23`
- Fix `ClassCastException` for `js.nodejs` [[#12]][12]
Expand All @@ -25,3 +29,5 @@

[12]: https://github.com/KotlinCrypto/secure-random/pull/12
[13]: https://github.com/KotlinCrypto/secure-random/pull/13
[14]: https://github.com/KotlinCrypto/secure-random/pull/14
[16]: https://github.com/KotlinCrypto/secure-random/pull/16
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,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.3.0")
implementation("org.kotlincrypto:secure-random:0.3.1")
}
```

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

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

<!-- TAG_DEPENDENCIES -->
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ POM_DEVELOPER_ID=KotlinCrypto
POM_DEVELOPER_NAME=Kotlin Crypto
POM_DEVELOPER_URL=https://github.com/KotlinCrypto/

VERSION_NAME=0.3.1-SNAPSHOT
VERSION_NAME=0.3.1
# 0.1.0-alpha01 = 00 01 00 11
# 0.1.0-beta01 = 00 01 00 21
# 0.1.0-rc01 = 00 01 00 31
Expand Down

0 comments on commit 2a3eebd

Please sign in to comment.