Skip to content

Commit 1d2ebce

Browse files
committed
Release 0.32.0
1 parent d98fa47 commit 1d2ebce

3 files changed

Lines changed: 18 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,25 @@ All notable changes to the `egui_plot` integration will be noted in this file.
44
This file is updated upon each release.
55
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.
66

7+
8+
## 0.32.0 - 2025-04-07
9+
10+
Full diff at https://github.com/emilk/egui_plot/compare/0.31.0..HEAD
11+
12+
#### PRs
13+
* `PlotResponse::hovered_plot_item` also set when hovering the legend [#81](https://github.com/emilk/egui_plot/pull/81) by [@Wumpf](https://github.com/Wumpf)
14+
* Plot items now require an id [#82](https://github.com/emilk/egui_plot/pull/82) by [@Wumpf](https://github.com/Wumpf)
15+
* Fix include_{xy} issue when auto bounds is off [#74](https://github.com/emilk/egui_plot/pull/74) by [@joaofl](https://github.com/joaofl)
16+
* Provide new functions to specify the default bounds [#90](https://github.com/emilk/egui_plot/pull/90) by [@irevoire](https://github.com/irevoire)
17+
18+
19+
720
## 0.31.0 - 2025-02-05
821

922
Full diff at https://github.com/emilk/egui_plot/compare/0.30.0..HEAD
1023

1124
#### PRs
12-
* Allow borrowing plot points via `PlotPoints::Borrowed` [#64](https://github.com/emilk/egui_plot/pull/64) by [@mo8it](https://github.com/mo8it) and [@bircni](https://github.com/bircni)
25+
* Allow borrowing plot points via `PlotPoints::Borrowed` [#64](https://github.com/emilk/egui_plot/pull/64) by [@mo8it](https://github.com/mo8it) and [@bircni](https://github.com/bircni)
1326
* Add `insertion_order` and `color_conflict_handling` to `Legend` [#65](https://github.com/emilk/egui_plot/pull/65) by [@Zoxc](https://github.com/Zoxc) and [@bircni](https://github.com/bircni)
1427
* Allow Plot::link_cursor to accept `impl Into<Vec2b>` [#66](https://github.com/emilk/egui_plot/pull/66) by [@jetuk](https://github.com/jetuk)
1528
* Axis: fix label thickness [#68](https://github.com/emilk/egui_plot/pull/68) by [@jordens](https://github.com/jordens)

Cargo.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -886,7 +886,7 @@ dependencies = [
886886

887887
[[package]]
888888
name = "demo"
889-
version = "0.31.0"
889+
version = "0.32.0"
890890
dependencies = [
891891
"eframe",
892892
"egui",
@@ -1128,7 +1128,7 @@ dependencies = [
11281128

11291129
[[package]]
11301130
name = "egui_plot"
1131-
version = "0.31.0"
1131+
version = "0.32.0"
11321132
dependencies = [
11331133
"ahash",
11341134
"document-features",

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ members = ["egui_plot", "demo", "examples/*"]
77
edition = "2021"
88
license = "MIT OR Apache-2.0"
99
rust-version = "1.81"
10-
version = "0.31.0"
10+
version = "0.32.0"
1111

1212

1313
[profile.release]
@@ -19,7 +19,7 @@ opt-level = 2
1919

2020

2121
[workspace.dependencies]
22-
egui_plot = { version = "0.31.0", path = "egui_plot", default-features = false }
22+
egui_plot = { version = "0.32.0", path = "egui_plot", default-features = false }
2323

2424
ahash = { version = "0.8.11", default-features = false, features = [
2525
"no-rng", # we don't need DOS-protection, so we let users opt-in to it instead

0 commit comments

Comments
 (0)