Skip to content

Commit 46b496c

Browse files
committed
Release 0.32.1
1 parent 84a3426 commit 46b496c

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ 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.32.1 - 2025-04-07
9+
10+
Full diff at https://github.com/emilk/egui_plot/compare/0.32.0..HEAD
11+
12+
#### PRs
13+
* Fix dynamic bounds modifications [#96](https://github.com/emilk/egui_plot/pull/96) by [@emilk](https://github.com/emilk)
14+
15+
816
## 0.32.0 - 2025-04-07
917

1018
Full diff at https://github.com/emilk/egui_plot/compare/0.31.0..HEAD

Cargo.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -886,7 +886,7 @@ dependencies = [
886886

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

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

Cargo.toml

+2-2
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.32.0"
10+
version = "0.32.1"
1111

1212

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

2020

2121
[workspace.dependencies]
22-
egui_plot = { version = "0.32.0", path = "egui_plot", default-features = false }
22+
egui_plot = { version = "0.32.1", 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)