From 228d9c7f7ba090402402ee8c1bfea244d04b7fbd Mon Sep 17 00:00:00 2001 From: Thomas Churchman Date: Wed, 10 Sep 2025 09:06:52 +0200 Subject: [PATCH] Release 0.3.2 --- CHANGELOG.md | 13 +++++++++---- Cargo.lock | 4 ++-- Cargo.toml | 6 +++--- 3 files changed, 14 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c33a57..eff0e72 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,10 +8,14 @@ Subheadings to categorize changes are `added, changed, deprecated, removed, fixe # Changelog -The latest published Color release is [0.3.1](#031-2025-05-19) which was released on 2025-05-19. -You can find its changes [documented below](#031-2025-05-19). +The latest published Color release is [0.3.2](#032-2025-09-10) which was released on 2025-09-10. +You can find its changes [documented below](#032-2025-09-10). -## [Unreleased] +## [Unreleased][] + +This release has an [MSRV][] of 1.82. + +## [0.3.2][] (2025-09-10) This release has an [MSRV][] of 1.82. @@ -206,7 +210,8 @@ This is the initial release. [#185]: https://github.com/linebender/color/pull/185 [#190]: https://github.com/linebender/color/pull/190 -[Unreleased]: https://github.com/linebender/color/compare/v0.3.1...HEAD +[Unreleased]: https://github.com/linebender/color/compare/v0.3.2...HEAD +[0.3.2]: https://github.com/linebender/color/releases/tag/v0.3.2 [0.3.1]: https://github.com/linebender/color/releases/tag/v0.3.1 [0.3.0]: https://github.com/linebender/color/releases/tag/v0.3.0 [0.2.4]: https://github.com/linebender/color/releases/tag/v0.2.4 diff --git a/Cargo.lock b/Cargo.lock index d2d0dde..cb92daf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -10,7 +10,7 @@ checksum = "3995eaeebcdf32f91f980d360f78732ddc061097ab4e39991ae7a6ace9194677" [[package]] name = "color" -version = "0.3.1" +version = "0.3.2" dependencies = [ "bytemuck", "libm", @@ -19,7 +19,7 @@ dependencies = [ [[package]] name = "color_operations" -version = "0.3.1" +version = "0.3.2" dependencies = [ "color", ] diff --git a/Cargo.toml b/Cargo.toml index 3ec8621..5e04857 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 `workspace.dependencies` section in this file. -version = "0.3.1" +version = "0.3.2" edition = "2021" # Keep in sync with RUST_MIN_VER in .github/workflows/ci.yml, with the relevant README.md files @@ -20,8 +20,8 @@ license = "Apache-2.0 OR MIT" repository = "https://github.com/linebender/color" [workspace.dependencies] -color = { version = "0.3.1", path = "color", default-features = false } -color_operations = { version = "0.3.1", path = "color_operations" } +color = { version = "0.3.2", path = "color", default-features = false } +color_operations = { version = "0.3.2", path = "color_operations" } [workspace.lints] rust.unsafe_code = "deny"