diff --git a/CHANGELOG.md b/CHANGELOG.md index c56fca0..3b4d42a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## 3.3.0 ### Added - The core module now publishes multiplatform targets for `iosSimulatorArm64`, `tvosSimulatorArm64`, and `watchosSimulatorArm64`. - The Jetpack Compose extensions module `colormath-ext-jetpack-compose` now publishes multiplatform targets for JVM and iOS in addition to the existing android target. diff --git a/README.md b/README.md index 986602d..28dd428 100644 --- a/README.md +++ b/README.md @@ -50,16 +50,16 @@ Colormath is distributed through [Maven Central](https://search.maven.org/artifa ```groovy dependencies { - implementation("com.github.ajalt.colormath:colormath:3.2.1") + implementation("com.github.ajalt.colormath:colormath:3.3.0") // optional extensions for interop with other platforms // // android.graphics.Color - implementation("com.github.ajalt.colormath.extensions:colormath-ext-android-color:3.2.1") + implementation("com.github.ajalt.colormath.extensions:colormath-ext-android-color:3.3.0") // androidx.annotation.ColorInt - implementation("com.github.ajalt.colormath.extensions:colormath-ext-android-colorint:3.2.1") + implementation("com.github.ajalt.colormath.extensions:colormath-ext-android-colorint:3.3.0") // androidx.compose.ui.graphics.Color - implementation("com.github.ajalt.colormath.extensions:colormath-ext-jetpack-compose:3.2.1") + implementation("com.github.ajalt.colormath.extensions:colormath-ext-jetpack-compose:3.3.0") } ``` diff --git a/gradle.properties b/gradle.properties index f8082d4..a9ed03b 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -VERSION_NAME=3.2.1 +VERSION_NAME=3.3.0 kotlin.mpp.stability.nowarn=true android.useAndroidX=true