diff --git a/CHANGELOG.md b/CHANGELOG.md index f5a9d98d6..f873738a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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]. @@ -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 diff --git a/README.md b/README.md index 7ae493f32..773190523 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/palette/Cargo.toml b/palette/Cargo.toml index b62d1cbb7..74398e68d 100644 --- a/palette/Cargo.toml +++ b/palette/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "palette" -version = "0.7.4" #automatically updated +version = "0.7.5" #automatically updated authors = ["Erik Hedvall "] exclude = [ "scripts/*", @@ -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"] @@ -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 } diff --git a/palette/README.md b/palette/README.md index 72414b6f7..24d260caf 100644 --- a/palette/README.md +++ b/palette/README.md @@ -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 @@ -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 ``` diff --git a/palette/src/lib.rs b/palette/src/lib.rs index 1b4565167..9eb456352 100644 --- a/palette/src/lib.rs +++ b/palette/src/lib.rs @@ -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")] diff --git a/palette_derive/Cargo.toml b/palette_derive/Cargo.toml index 0abe67b77..e41628208 100644 --- a/palette_derive/Cargo.toml +++ b/palette_derive/Cargo.toml @@ -1,10 +1,10 @@ [package] name = "palette_derive" -version = "0.7.4" #automatically updated +version = "0.7.5" #automatically updated authors = ["Erik Hedvall "] 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"]