Skip to content

Commit

Permalink
Update version to 0.2.0 for publish (#98)
Browse files Browse the repository at this point in the history
  • Loading branch information
waywardmonkeys authored Dec 17, 2024
1 parent 5d33463 commit e7ee2d9
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 8 deletions.
11 changes: 8 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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][])
Expand Down Expand Up @@ -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
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.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
Expand Down Expand Up @@ -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" }

0 comments on commit e7ee2d9

Please sign in to comment.