From ee24676553c3afb94fe3a6de5cf1b23aa52db32f Mon Sep 17 00:00:00 2001 From: okaneco <47607823+okaneco@users.noreply.github.com> Date: Sat, 22 Jul 2023 20:57:03 -0400 Subject: [PATCH] Update changelog --- CHANGELOG.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 625926b..9d6cd75 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # `simple_clustering` changelog +## Version 0.2.0 - 2023-07 +Updated the color-handling crate, `palette`, from `0.6` to `0.7`. Users will +need to change from using `palette::Pixel::from_raw_slice` to +`palette::cast::from_component_slice` for preparing the input image buffer. + +Consult the [documentation] or `lib.rs` file for examples. + +[#3][3] - Upgrade dependencies, update CI/CD workflows, bump to 0.2.0 + ## Version 0.1.1 - 2023-01 Improved SLIC calculation speed by ~15-20% after refactoring calculation loop. @@ -8,4 +17,6 @@ Improved SLIC calculation speed by ~15-20% after refactoring calculation loop. ## Version 0.1.0 - 2022-04 - Initial Commit +[documentation]: https://docs.rs/simple_clustering [1]: https://github.com/okaneco/simple_clustering/pull/1 +[3]: https://github.com/okaneco/simple_clustering/pull/3