Skip to content

Commit 434b294

Browse files
committed
Release 0.35.0
1 parent 80acc23 commit 434b294

File tree

3 files changed

+23
-4
lines changed

3 files changed

+23
-4
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +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+
9+
## 0.35.0 - 2026-03-26
10+
* Update to egui 0.34 [#239](https://github.com/emilk/egui_plot/pull/239) by [@emilk](https://github.com/emilk)
11+
* Update MSRV to 1.92 [#238](https://github.com/emilk/egui_plot/pull/238) by [@emilk](https://github.com/emilk)
12+
* Hide coordinate's tooltip if label is empty [#145](https://github.com/emilk/egui_plot/pull/145) by [@TihonovNV](https://github.com/TihonovNV)
13+
* Change `PreparedPlot::hover` to use last suitable `PlotItem` [#147](https://github.com/emilk/egui_plot/pull/147) by [@TihonovNV](https://github.com/TihonovNV)
14+
* Add `Plot::pan_pointer_button` to configure how to pan [#149](https://github.com/emilk/egui_plot/pull/149) by [@emilk](https://github.com/emilk)
15+
* Heatmap support [#195](https://github.com/emilk/egui_plot/pull/195) by [@michalsustr](https://github.com/michalsustr)
16+
* Add spans for plots [#196](https://github.com/emilk/egui_plot/pull/196) by [@michalsustr](https://github.com/michalsustr)
17+
* Add `FilledArea` plot item [#202](https://github.com/emilk/egui_plot/pull/202) by [@michalsustr](https://github.com/michalsustr)
18+
* Fix no `auto_bounds` preventing pan/zoom/scroll [#218](https://github.com/emilk/egui_plot/pull/218) by [@kitizz](https://github.com/kitizz)
19+
* Spit crosshair and labels API [#221](https://github.com/emilk/egui_plot/pull/221) by [@michalsustr](https://github.com/michalsustr)
20+
* Allow grouping legend entries by id rather than name [#231](https://github.com/emilk/egui_plot/pull/231) by [@Wumpf](https://github.com/Wumpf)
21+
* Add `grid_color` and `grid_fade` API [#235](https://github.com/emilk/egui_plot/pull/235) by [@gavrelina](https://github.com/gavrelina)
22+
* Find closest line segment for `Line` plots [#234](https://github.com/emilk/egui_plot/pull/234) by [@lucasmerlin](https://github.com/lucasmerlin)
23+
* Add ability to specify color and font of axis tick labels for each axis [#155](https://github.com/emilk/egui_plot/pull/155) by [@TommiKabelitz](https://github.com/TommiKabelitz)
24+
25+
726
## 0.34.1 - 2026-02-16
827
* Allow grouping legend entries by id rather than name [#231](https://github.com/emilk/egui_plot/pull/231) by [@Wumpf](https://github.com/Wumpf)
928

Cargo.lock

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

900900
[[package]]
901901
name = "demo"
902-
version = "0.34.1"
902+
version = "0.35.0"
903903
dependencies = [
904904
"borrow_points",
905905
"box_plot",
@@ -1154,7 +1154,7 @@ dependencies = [
11541154

11551155
[[package]]
11561156
name = "egui_plot"
1157-
version = "0.34.1"
1157+
version = "0.35.0"
11581158
dependencies = [
11591159
"ahash",
11601160
"assertables",

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ members = [
1212
edition = "2024"
1313
license = "MIT OR Apache-2.0"
1414
rust-version = "1.92"
15-
version = "0.34.1"
15+
version = "0.35.0"
1616

1717

1818
[profile.release]
@@ -24,7 +24,7 @@ opt-level = 2
2424

2525

2626
[workspace.dependencies]
27-
egui_plot = { version = "0.34.1", path = "egui_plot", default-features = false }
27+
egui_plot = { version = "0.35.0", path = "egui_plot", default-features = false }
2828
examples_utils = { version = "0.1.0", path = "examples_utils" }
2929

3030
borrow_points = { version = "0.1.0", path = "examples/borrow_points" }

0 commit comments

Comments
 (0)