Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.2.1 #115

Merged
merged 1 commit into from
Dec 28, 2024
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,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
waywardmonkeys marked this conversation as resolved.
Show resolved Hide resolved

* Add `FromStr` impl for `AlphaColor`, `DynamicColor`, `OpaqueColor`, `PremulColor`. ([#111][] by [@waywardmonkeys][])

Expand Down Expand Up @@ -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

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 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
Expand Down Expand Up @@ -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" }
Loading