diff --git a/CHANGELOG.md b/CHANGELOG.md index 044cb05..b3b39ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 3.4.0 +### Added +- Publish artifacts for the `wasmJs` target. This target is experimental and not tested on CI. + ## 3.3.3 ### Changed - Use unique namespace for all android extensions and disable BuildConfig generation. Thanks to @frett for the contribution ([#45](https://github.com/ajalt/colormath/issues/45)) diff --git a/README.md b/README.md index 6412d87..fde7d61 100644 --- a/README.md +++ b/README.md @@ -52,16 +52,16 @@ Colormath is distributed through [Maven Central](https://search.maven.org/artifa ```groovy dependencies { - implementation("com.github.ajalt.colormath:colormath:3.3.3") + implementation("com.github.ajalt.colormath:colormath:3.4.0") // optional extensions for interop with other platforms // // android.graphics.Color - implementation("com.github.ajalt.colormath:colormath-ext-android-color:3.3.3") + implementation("com.github.ajalt.colormath:colormath-ext-android-color:3.4.0") // androidx.annotation.ColorInt - implementation("com.github.ajalt.colormath:colormath-ext-android-colorint:3.3.3") + implementation("com.github.ajalt.colormath:colormath-ext-android-colorint:3.4.0") // androidx.compose.ui.graphics.Color - implementation("com.github.ajalt.colormath:colormath-ext-jetpack-compose:3.3.3") + implementation("com.github.ajalt.colormath:colormath-ext-jetpack-compose:3.4.0") } ``` @@ -80,7 +80,7 @@ targets, as well as `mingwX64` and `wasm`.
Snapshot builds are also available - +

You'll need to add the Sonatype snapshots repository: diff --git a/gradle.properties b/gradle.properties index 698d4dc..b3b2781 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,4 @@ -VERSION_NAME=3.3.3 - +VERSION_NAME=3.4.0 kotlin.mpp.stability.nowarn=true android.useAndroidX=true