From e7ee2d90cae78a63996dadfaae219fdaa7650379 Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Tue, 17 Dec 2024 15:58:21 -0500 Subject: [PATCH] Update version to 0.2.0 for publish (#98) --- CHANGELOG.md | 11 ++++++++--- Cargo.lock | 4 ++-- Cargo.toml | 6 +++--- 3 files changed, 13 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e7ebe1..652f8af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,13 +8,17 @@ Subheadings to categorize changes are `added, changed, deprecated, removed, fixe # Changelog -The latest published Color release is [0.1.0](#010-2024-11-20) which was released on 2024-11-20. -You can find its changes [documented below](#010-2024-11-20). +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). ## [Unreleased] This release has an [MSRV][] of 1.82. +## [0.2.0][] (2024-12-17) + +This release has an [MSRV][] of 1.82. + ### Added * Add `BLACK`, `WHITE`, and `TRANSPARENT` constants to the color types. ([#64][] by [@waywardmonkeys][]) @@ -71,7 +75,8 @@ This is the initial release. [#92]: https://github.com/linebender/color/pull/92 [#100]: https://github.com/linebender/color/pull/100 -[Unreleased]: https://github.com/linebender/color/compare/v0.1.0...HEAD +[Unreleased]: https://github.com/linebender/color/compare/v0.2.0...HEAD +[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 [MSRV]: README.md#minimum-supported-rust-version-msrv diff --git a/Cargo.lock b/Cargo.lock index 2fd3ba2..9c50fb3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -10,7 +10,7 @@ checksum = "8b37c88a63ffd85d15b406896cc343916d7cf57838a847b3a6f2ca5d39a5695a" [[package]] name = "color" -version = "0.1.0" +version = "0.2.0" dependencies = [ "bytemuck", "libm", @@ -19,7 +19,7 @@ dependencies = [ [[package]] name = "color_operations" -version = "0.1.0" +version = "0.2.0" dependencies = [ "color", ] diff --git a/Cargo.toml b/Cargo.toml index 5cad590..cf19070 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.1.0" +version = "0.2.0" 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.1.0", path = "color", default-features = false } -color_operations = { version = "0.1.0", path = "color_operations" } +color = { version = "0.2.0", path = "color", default-features = false } +color_operations = { version = "0.2.0", path = "color_operations" }