diff --git a/CHANGELOG.md b/CHANGELOG.md index db84197..f587a89 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ All notable changes to the `egui_plot` integration will be noted in this file. This file is updated upon each release. Changes since the last release can be found at or by running the `scripts/generate_changelog.py` script. +## 0.34.1 - 2026-02-16 +* Allow grouping legend entries by id rather than name [#231](https://github.com/emilk/egui_plot/pull/231) by [@Wumpf](https://github.com/Wumpf) + ## 0.34.0 - 2025-10-10 * Update to egui 0.33.0 [#140](https://github.com/emilk/egui_plot/pull/140) by [@lucasmerlin](https://github.com/lucasmerlin) diff --git a/Cargo.lock b/Cargo.lock index b286614..e9ad065 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -929,7 +929,7 @@ dependencies = [ [[package]] name = "demo" -version = "0.34.0" +version = "0.34.1" dependencies = [ "borrow_points", "box_plot", @@ -1195,7 +1195,7 @@ dependencies = [ [[package]] name = "egui_plot" -version = "0.34.0" +version = "0.34.1" dependencies = [ "ahash", "assertables", diff --git a/Cargo.toml b/Cargo.toml index b292047..1de2bcf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ members = ["egui_plot", "demo", "examples/*", "examples_utils"] edition = "2024" license = "MIT OR Apache-2.0" rust-version = "1.88" -version = "0.34.0" +version = "0.34.1" [profile.release] @@ -19,7 +19,7 @@ opt-level = 2 [workspace.dependencies] -egui_plot = { version = "0.34.0", path = "egui_plot", default-features = false } +egui_plot = { version = "0.34.1", path = "egui_plot", default-features = false } examples_utils = { version = "0.1.0", path = "examples_utils" } borrow_points = { version = "0.1.0", path = "examples/borrow_points" }