From 6c38ac58261340ec32e6d4fafc4c850ecc4ddc30 Mon Sep 17 00:00:00 2001 From: AJ Date: Sun, 30 Jun 2024 15:59:57 -0700 Subject: [PATCH] Release version 3.6.0 --- CHANGELOG.md | 5 +++++ README.md | 8 ++++---- gradle.properties | 2 +- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 347c431..8020844 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # Changelog ## Unreleased + +## 3.6.0 +### Added +- Publish artifacts for the `watchosArm32` target (thanks @ReneeVandervelde) + ### Changed - Update Kotlin to 2.0.0 diff --git a/README.md b/README.md index 88345c3..ce52bb2 100644 --- a/README.md +++ b/README.md @@ -49,16 +49,16 @@ Colormath is distributed through [Maven Central](https://search.maven.org/artifa ```groovy dependencies { - implementation("com.github.ajalt.colormath:colormath:3.5.0") + implementation("com.github.ajalt.colormath:colormath:3.6.0") // optional extensions for interop with other platforms // // android.graphics.Color - implementation("com.github.ajalt.colormath:colormath-ext-android-color:3.5.0") + implementation("com.github.ajalt.colormath:colormath-ext-android-color:3.6.0") // androidx.annotation.ColorInt - implementation("com.github.ajalt.colormath:colormath-ext-android-colorint:3.5.0") + implementation("com.github.ajalt.colormath:colormath-ext-android-colorint:3.6.0") // androidx.compose.ui.graphics.Color - implementation("com.github.ajalt.colormath:colormath-ext-jetpack-compose:3.5.0") + implementation("com.github.ajalt.colormath:colormath-ext-jetpack-compose:3.6.0") } ``` diff --git a/gradle.properties b/gradle.properties index 17cf925..c9d73a2 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -VERSION_NAME=3.5.0 +VERSION_NAME=3.6.0 kotlin.mpp.stability.nowarn=true android.useAndroidX=true