Skip to content

Commit

Permalink
Release version 3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ajalt committed Sep 24, 2021
1 parent a2d9e85 commit 0ab52d1
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
# Changelog

## Unreleased
## [3.1.0] - 2021-09-24
### Added
- Optional modules with extensions for converting between Colormath colors and other platform representations.

### Changed
- Unspecified alpha values now default to fully opaque

## [3.0.0] - 2021-09-10
### Added
- New color models: `Oklab`, `Oklch`, `HWB`, `HPLuv`, `HSLuv`, `LCHab`, `LCHuv`, `JzAzBz`, `JzCzHz`, `ICtCp`
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,16 +50,16 @@ Colormath is distributed through [Maven Central](https://search.maven.org/artifa

```groovy
dependencies {
implementation("com.github.ajalt.colormath:colormath:3.0.0")
implementation("com.github.ajalt.colormath:colormath:3.1.0")
// optional extensions for interop with other platforms
//
// android.graphics.Color
implementation("com.github.ajalt.colormath.extensions:colormath-ext-android-color:3.0.0")
implementation("com.github.ajalt.colormath.extensions:colormath-ext-android-color:3.1.0")
// androidx.annotation.ColorInt
implementation("com.github.ajalt.colormath.extensions:colormath-ext-android-colorint:3.0.0")
implementation("com.github.ajalt.colormath.extensions:colormath-ext-android-colorint:3.1.0")
// androidx.compose.ui.graphics.Color
implementation("com.github.ajalt.colormath.extensions:colormath-ext-jetpack-compose:3.0.0")
implementation("com.github.ajalt.colormath.extensions:colormath-ext-jetpack-compose:3.1.0")
}
```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION_NAME=3.0.0
VERSION_NAME=3.1.0

# work around for compose-web bug KT-48273
kotlin.js.webpack.major.version=4
Expand Down

0 comments on commit 0ab52d1

Please sign in to comment.