diff --git a/CHANGELOG.md b/CHANGELOG.md index fb3d336..e0af14c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # CHANGELOG +## Version 2.2.1 (2024-03-13) + - Adds support for `wasmJs.browser` [[#144]][144] + ## Version 2.2.0 (2024-03-10) - Updates dependencies - Kotlin `1.9.21` -> `1.9.23` @@ -181,4 +184,5 @@ [139]: https://github.com/05nelsonm/encoding/pull/139 [140]: https://github.com/05nelsonm/encoding/pull/140 [142]: https://github.com/05nelsonm/encoding/pull/142 +[144]: https://github.com/05nelsonm/encoding/pull/144 [MIGRATION]: https://github.com/05nelsonm/encoding/blob/master/MIGRATION.md diff --git a/README.md b/README.md index 9b5514c..70ff16c 100644 --- a/README.md +++ b/README.md @@ -278,7 +278,7 @@ See [sample project](sample/README.md) ```kotlin // build.gradle.kts dependencies { - val encoding = "2.2.0" + val encoding = "2.2.1" implementation("io.matthewnelson.encoding:base16:$encoding") implementation("io.matthewnelson.encoding:base32:$encoding") implementation("io.matthewnelson.encoding:base64:$encoding") @@ -295,7 +295,7 @@ Alternatively, you can use the BOM. // build.gradle.kts dependencies { // define the BOM and its version - implementation(platform("io.matthewnelson.encoding:bom:2.2.0")) + implementation(platform("io.matthewnelson.encoding:bom:2.2.1")) // define artifacts without version implementation("io.matthewnelson.encoding:base16") @@ -308,7 +308,7 @@ dependencies { ``` -[badge-latest-release]: https://img.shields.io/badge/latest--release-2.2.0-blue.svg?style=flat +[badge-latest-release]: https://img.shields.io/badge/latest--release-2.2.1-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 ab6a544..5a53087 100644 --- a/gradle.properties +++ b/gradle.properties @@ -27,7 +27,7 @@ POM_DEVELOPER_ID=05nelsonm POM_DEVELOPER_NAME=Matthew Nelson POM_DEVELOPER_URL=https://github.com/05nelsonm/ -VERSION_NAME=2.2.1-SNAPSHOT +VERSION_NAME=2.2.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