Skip to content

Commit

Permalink
Merge pull request #381 from Ogeon/prepare_0.7.5
Browse files Browse the repository at this point in the history
Version 0.7.5
  • Loading branch information
Ogeon authored Feb 25, 2024
2 parents 25ca8af + 94652f7 commit c54efbd
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 10 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## Version 0.7.5 - 2024-02-25

* [#380][380]: Avoid recursive trait resolution for `IntoIterator`. Closes [#283][283].

## Version 0.7.4 - 2024-01-28

* [#373][373]: Add an "alloc" feature and make tests work with any feature combination. Closes [#366][366].
Expand Down Expand Up @@ -292,6 +296,7 @@ The first published version.
[369]: https://github.com/Ogeon/palette/pull/369
[373]: https://github.com/Ogeon/palette/pull/373
[374]: https://github.com/Ogeon/palette/pull/374
[380]: https://github.com/Ogeon/palette/pull/380
[2]: https://github.com/Ogeon/palette/issues/2
[3]: https://github.com/Ogeon/palette/issues/3
[4]: https://github.com/Ogeon/palette/issues/4
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ A color management and conversion library that focuses on maintaining correctnes

## Online Documentation

[Released](https://docs.rs/palette/0.7.4/palette/)
[Released](https://docs.rs/palette/0.7.5/palette/)

[Master branch](https://ogeon.github.io/palette/palette/index.html)

Expand Down
6 changes: 3 additions & 3 deletions palette/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "palette"
version = "0.7.4" #automatically updated
version = "0.7.5" #automatically updated
authors = ["Erik Hedvall <hello@erikhedvall.nu>"]
exclude = [
"scripts/*",
Expand All @@ -16,7 +16,7 @@ exclude = [
"version.sh",
]
description = "Convert and manage colors with a focus on correctness, flexibility and ease of use."
documentation = "https://docs.rs/palette/0.7.4/palette/"
documentation = "https://docs.rs/palette/0.7.5/palette/"
repository = "https://github.com/Ogeon/palette"
readme = "README.md"
keywords = ["color", "conversion", "linear", "pixel", "rgb"]
Expand All @@ -41,7 +41,7 @@ alloc = []
bench = false

[dependencies]
palette_derive = { version = "0.7.4", path = "../palette_derive" }
palette_derive = { version = "0.7.5", path = "../palette_derive" }
fast-srgb8 = "1.0.0"
approx = { version = "0.5", default-features = false, optional = true }
libm = { version = "0.2.1", default-features = false, optional = true }
Expand Down
6 changes: 3 additions & 3 deletions palette/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

A color management and conversion library that focuses on maintaining correctness, flexibility and ease of use. It makes use of the type system to prevent mistakes, support a wide range of color spaces (including user defined variants) and offer different ways of integrating with other libraries.

[The announcement post for 0.7.4](https://ogeon.github.io/2024/01/28/palette-0.7.4.html).
[The announcement post for 0.7.5](https://ogeon.github.io/2024/02/25/palette-0.7.5.html).

## Feature Summary

Expand All @@ -23,14 +23,14 @@ Add the following lines to your `Cargo.toml` file:

```toml
[dependencies]
palette = "0.7.4"
palette = "0.7.5"
```

or these lines if you want to opt out of `std`:

```toml
[dependencies.palette]
version = "0.7.4"
version = "0.7.5"
default-features = false
features = ["libm"] # Uses libm instead of std for floating point math
```
Expand Down
2 changes: 1 addition & 1 deletion palette/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@

// Keep the standard library when running tests, too
#![cfg_attr(all(not(feature = "std"), not(test)), no_std)]
#![doc(html_root_url = "https://docs.rs/palette/0.7.4/")]
#![doc(html_root_url = "https://docs.rs/palette/0.7.5/")]
#![warn(missing_docs)]

#[cfg(feature = "alloc")]
Expand Down
4 changes: 2 additions & 2 deletions palette_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[package]
name = "palette_derive"
version = "0.7.4" #automatically updated
version = "0.7.5" #automatically updated
authors = ["Erik Hedvall <hello@erikhedvall.nu>"]
exclude = []
description = "Automatically implement traits from the palette crate."
documentation = "https://docs.rs/palette/0.7.4/palette/"
documentation = "https://docs.rs/palette/0.7.5/palette/"
repository = "https://github.com/Ogeon/palette"
readme = "README.md"
keywords = ["palette", "derive", "macros"]
Expand Down

0 comments on commit c54efbd

Please sign in to comment.