From 712ac9e303a8911d23a587d4a2dd11338ea6c695 Mon Sep 17 00:00:00 2001 From: Matthew Nelson Date: Mon, 18 Mar 2024 11:12:39 -0400 Subject: [PATCH] Prepare 0.3.0 release --- CHANGELOG.md | 26 ++++++++++++++++---------- README.md | 4 ++-- gradle.properties | 4 ++-- 3 files changed, 20 insertions(+), 14 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 89e01e4..22ac588 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,16 +1,22 @@ # CHANGELOG +## Version 0.3.0 (2024-03-18) + - Updates dependencies + - Kotlin `1.9.21` -> `1.9.23` + - Add experimental support for `wasmJs` & `wasmWasi` + - Add support for Java9 `JPMS` via Multi-Release jar + ## 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-04-07) - Initial Release diff --git a/README.md b/README.md index f423cf1..0224783 100644 --- a/README.md +++ b/README.md @@ -80,12 +80,12 @@ The best way to keep `KotlinCrypto` dependencies up to date is by using the ```kotlin // build.gradle.kts dependencies { - implementation("org.kotlincrypto.endians:endians:0.2.0") + implementation("org.kotlincrypto.endians:endians:0.3.0") } ``` -[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 diff --git a/gradle.properties b/gradle.properties index 82c73a7..754a3eb 100644 --- a/gradle.properties +++ b/gradle.properties @@ -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