diff --git a/Cargo.lock b/Cargo.lock index 5073cd8b6..d2fcc38c1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1200,7 +1200,7 @@ checksum = "f25c0e292a7ca6d6498557ff1df68f32c99850012b6ea401cf8daf771f22ff53" [[package]] name = "ecolor" -version = "0.30.0" +version = "0.30.1" dependencies = [ "bytemuck", "cint", @@ -1212,7 +1212,7 @@ dependencies = [ [[package]] name = "eframe" -version = "0.30.0" +version = "0.30.1" dependencies = [ "ahash", "bytemuck", @@ -1252,7 +1252,7 @@ dependencies = [ [[package]] name = "egui" -version = "0.30.0" +version = "0.30.1" dependencies = [ "accesskit", "ahash", @@ -1269,7 +1269,7 @@ dependencies = [ [[package]] name = "egui-wgpu" -version = "0.30.0" +version = "0.30.1" dependencies = [ "ahash", "bytemuck", @@ -1287,7 +1287,7 @@ dependencies = [ [[package]] name = "egui-winit" -version = "0.30.0" +version = "0.30.1" dependencies = [ "accesskit_winit", "ahash", @@ -1307,7 +1307,7 @@ dependencies = [ [[package]] name = "egui_demo_app" -version = "0.30.0" +version = "0.30.1" dependencies = [ "bytemuck", "chrono", @@ -1333,7 +1333,7 @@ dependencies = [ [[package]] name = "egui_demo_lib" -version = "0.30.0" +version = "0.30.1" dependencies = [ "chrono", "criterion", @@ -1348,7 +1348,7 @@ dependencies = [ [[package]] name = "egui_extras" -version = "0.30.0" +version = "0.30.1" dependencies = [ "ahash", "chrono", @@ -1367,7 +1367,7 @@ dependencies = [ [[package]] name = "egui_glow" -version = "0.30.0" +version = "0.30.1" dependencies = [ "ahash", "bytemuck", @@ -1387,7 +1387,7 @@ dependencies = [ [[package]] name = "egui_kittest" -version = "0.30.0" +version = "0.30.1" dependencies = [ "dify", "document-features", @@ -1421,7 +1421,7 @@ checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" [[package]] name = "emath" -version = "0.30.0" +version = "0.30.1" dependencies = [ "bytemuck", "document-features", @@ -1512,7 +1512,7 @@ dependencies = [ [[package]] name = "epaint" -version = "0.30.0" +version = "0.30.1" dependencies = [ "ab_glyph", "ahash", @@ -1533,7 +1533,7 @@ dependencies = [ [[package]] name = "epaint_default_fonts" -version = "0.30.0" +version = "0.30.1" [[package]] name = "equivalent" @@ -3064,7 +3064,7 @@ checksum = "2f3a9f18d041e6d0e102a0a46750538147e5e8992d3b4873aaafee2520b00ce3" [[package]] name = "popups" -version = "0.30.0" +version = "0.30.1" dependencies = [ "eframe", "env_logger", @@ -4986,7 +4986,7 @@ checksum = "ec7a2a501ed189703dba8b08142f057e887dfc4b2cc4db2d343ac6376ba3e0b9" [[package]] name = "xtask" -version = "0.30.0" +version = "0.30.1" [[package]] name = "yaml-rust" diff --git a/Cargo.toml b/Cargo.toml index 4077f9d7e..b72b6992b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,7 @@ members = [ edition = "2021" license = "MIT OR Apache-2.0" rust-version = "1.80" -version = "0.30.0" +version = "0.30.1" [profile.release] @@ -66,7 +66,7 @@ egui-wgpu = { version = "0.30.0", path = "crates/egui-wgpu", default-features = egui_demo_lib = { version = "0.30.0", path = "crates/egui_demo_lib", default-features = false } egui_glow = { version = "0.30.0", path = "crates/egui_glow", default-features = false } egui_kittest = { version = "0.30.0", path = "crates/egui_kittest", default-features = false } -eframe = { version = "0.30.0", path = "crates/eframe", default-features = false } +eframe = { version = "0.30.1", path = "crates/eframe", default-features = false } ahash = { version = "0.8.11", default-features = false, features = [ "no-rng", # we don't need DOS-protection, so we let users opt-in to it instead diff --git a/RELEASES.md b/RELEASES.md index 79bf23bc6..a0e2348a6 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -42,7 +42,7 @@ We don't update the MSRV in a patch release, unless we really, really need to. - test on chromium - check the in-browser profiler * [ ] check the color test -* [ ] update `eframe_template` and test +* [ ] IMPORTANT: `eframe_template` with a commit hash, and make a PR to check that it passes CI! * [ ] update `egui_plot` and test * [ ] update `egui_tiles` and test * [ ] test with Rerun diff --git a/crates/eframe/CHANGELOG.md b/crates/eframe/CHANGELOG.md index 35908e33d..b3c85bebb 100644 --- a/crates/eframe/CHANGELOG.md +++ b/crates/eframe/CHANGELOG.md @@ -7,6 +7,10 @@ This file is updated upon each release. Changes since the last release can be found at or by running the `scripts/generate_changelog.py` script. +## 0.30.1 - 2024-12-16 - Fix glow backend on Linux +* Revert "forward x11 and wayland features to glutin" ([#5391](https://github.com/emilk/egui/pull/5391)) to fix glow backend + + ## 0.30.0 - 2024-12-16 - Android support ### ⭐ Added * Support `ViewportCommand::Screenshot` on web [#5438](https://github.com/emilk/egui/pull/5438) by [@lucasmerlin](https://github.com/lucasmerlin)