diff --git a/CHANGELOG.md b/CHANGELOG.md index d9622cd..0bb7624 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,14 +8,18 @@ Subheadings to categorize changes are `added, changed, deprecated, removed, fixe # Changelog -The latest published Color release is [0.2.0](#020-2024-12-17) which was released on 2024-12-17. -You can find its changes [documented below](#020-2024-12-17). +The latest published Color release is [0.2.1](#021-2024-12-27) which was released on 2024-12-27. +You can find its changes [documented below](#021-2024-12-27). ## [Unreleased] This release has an [MSRV][] of 1.82. -### +## [0.2.1][] (2024-12-27) + +This release has an [MSRV][] of 1.82. + +### Added * Add `FromStr` impl for `AlphaColor`, `DynamicColor`, `OpaqueColor`, `PremulColor`. ([#111][] by [@waywardmonkeys][]) @@ -92,7 +96,8 @@ This is the initial release. [#111]: https://github.com/linebender/color/pull/111 [#113]: https://github.com/linebender/color/pull/113 -[Unreleased]: https://github.com/linebender/color/compare/v0.2.0...HEAD +[Unreleased]: https://github.com/linebender/color/compare/v0.2.1...HEAD +[0.2.1]: https://github.com/linebender/color/releases/tag/v0.2.1 [0.2.0]: https://github.com/linebender/color/releases/tag/v0.2.0 [0.1.0]: https://github.com/linebender/color/releases/tag/v0.1.0 diff --git a/Cargo.lock b/Cargo.lock index cfd43cc..c2ba179 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -10,7 +10,7 @@ checksum = "ef657dfab802224e671f5818e9a4935f9b1957ed18e58292690cc39e7a4092a3" [[package]] name = "color" -version = "0.2.0" +version = "0.2.1" dependencies = [ "bytemuck", "libm", @@ -19,7 +19,7 @@ dependencies = [ [[package]] name = "color_operations" -version = "0.2.0" +version = "0.2.1" dependencies = [ "color", ] diff --git a/Cargo.toml b/Cargo.toml index cf19070..8fb3a7a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ members = ["color", "color_operations"] # # NOTE: When bumping this, remember to also bump the aforementioned other packages' # version in the dependencies section at the bottom of this file. -version = "0.2.0" +version = "0.2.1" edition = "2021" # Keep in sync with RUST_MIN_VER in .github/workflows/ci.yml, with the relevant README.md files @@ -80,5 +80,5 @@ clippy.wildcard_dependencies = "warn" # END LINEBENDER LINT SET [workspace.dependencies] -color = { version = "0.2.0", path = "color", default-features = false } -color_operations = { version = "0.2.0", path = "color_operations" } +color = { version = "0.2.1", path = "color", default-features = false } +color_operations = { version = "0.2.1", path = "color_operations" }