Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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][]
Copy link
Member

@DJMcNab DJMcNab Sep 10, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We really should get some markdownlint CI set up...

This is of course only an unrelated musing.


This release has an [MSRV][] of 1.82.

## [0.3.2][] (2025-09-10)

This release has an [MSRV][] of 1.82.

Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"
Expand Down
Loading