Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <https://github.com/emilk/egui_plot/compare/latest...HEAD> 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)
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock
Original file line number Diff line number Diff line change
Expand Up @@ -929,7 +929,7 @@ dependencies = [

[[package]]
name = "demo"
version = "0.34.0"
version = "0.34.1"
dependencies = [
"borrow_points",
"box_plot",
Expand Down Expand Up @@ -1195,7 +1195,7 @@ dependencies = [

[[package]]
name = "egui_plot"
version = "0.34.0"
version = "0.34.1"
dependencies = [
"ahash",
"assertables",
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand All @@ -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" }
Expand Down
Loading