Skip to content

Commit 7074b29

Browse files
committed
Release 0.36.0
1 parent 50af77e commit 7074b29

3 files changed

Lines changed: 14 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ 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

77

8+
## 0.36.0 - 2026-06-26
9+
10+
Full diff at https://github.com/emilk/egui_plot/compare/0.35.0..HEAD
11+
12+
#### PRs
13+
* Replace `impl Into<f32>` parameters with just `f32` [#249](https://github.com/emilk/egui_plot/pull/249) by [@emilk](https://github.com/emilk)
14+
* Fix broken relative README links on crates.io [#247](https://github.com/emilk/egui_plot/pull/247) by [@Burrdi](https://github.com/Burrdi)
15+
* Provide element index with label_formatter [#138](https://github.com/emilk/egui_plot/pull/138) by [@upsj](https://github.com/upsj)
16+
* Update egui to 0.35 [#250](https://github.com/emilk/egui_plot/pull/250) by [@lucasmerlin](https://github.com/lucasmerlin)
17+
818

919
## 0.35.0 - 2026-03-26
1020
* Update to egui 0.34 [#239](https://github.com/emilk/egui_plot/pull/239) by [@emilk](https://github.com/emilk)

Cargo.lock

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

915915
[[package]]
916916
name = "demo"
917-
version = "0.35.0"
917+
version = "0.36.0"
918918
dependencies = [
919919
"borrow_points",
920920
"box_plot",
@@ -1169,7 +1169,7 @@ dependencies = [
11691169

11701170
[[package]]
11711171
name = "egui_plot"
1172-
version = "0.35.0"
1172+
version = "0.36.0"
11731173
dependencies = [
11741174
"ahash",
11751175
"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.35.0"
15+
version = "0.36.0"
1616

1717

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

2525

2626
[workspace.dependencies]
27-
egui_plot = { version = "0.35.0", path = "egui_plot", default-features = false }
27+
egui_plot = { version = "0.36.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)