diff --git a/CHANGELOG.md b/CHANGELOG.md index 7194ccc5a..397279699 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,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.36.1 - 2026-08-07 +* Fix `Sense::drag` detecting drags when clicking widget above it [#8396](https://github.com/emilk/egui/pull/8396) by [@lucasmerlin](https://github.com/lucasmerlin) + + ## 0.36.0 - 2026-08-05 ### Highlights ✨ diff --git a/Cargo.lock b/Cargo.lock index 97791c6f9..e472f7c3b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1243,7 +1243,7 @@ checksum = "d8b14ccef22fc6f5a8f4d7d768562a182c04ce9a3b3157b91390b52ddfdf1a76" [[package]] name = "ecolor" -version = "0.36.0" +version = "0.36.1" dependencies = [ "bytemuck", "cint", @@ -1255,7 +1255,7 @@ dependencies = [ [[package]] name = "eframe" -version = "0.36.0" +version = "0.36.1" dependencies = [ "ahash", "bytemuck", @@ -1293,7 +1293,7 @@ dependencies = [ [[package]] name = "egui" -version = "0.36.0" +version = "0.36.1" dependencies = [ "accesskit", "ahash", @@ -1315,7 +1315,7 @@ dependencies = [ [[package]] name = "egui-wgpu" -version = "0.36.0" +version = "0.36.1" dependencies = [ "ahash", "bytemuck", @@ -1333,7 +1333,7 @@ dependencies = [ [[package]] name = "egui-winit" -version = "0.36.0" +version = "0.36.1" dependencies = [ "accesskit_winit", "arboard", @@ -1356,7 +1356,7 @@ dependencies = [ [[package]] name = "egui_demo_app" -version = "0.36.0" +version = "0.36.1" dependencies = [ "accesskit", "accesskit_consumer", @@ -1385,7 +1385,7 @@ dependencies = [ [[package]] name = "egui_demo_lib" -version = "0.36.0" +version = "0.36.1" dependencies = [ "criterion", "document-features", @@ -1403,7 +1403,7 @@ dependencies = [ [[package]] name = "egui_extras" -version = "0.36.0" +version = "0.36.1" dependencies = [ "ahash", "document-features", @@ -1423,7 +1423,7 @@ dependencies = [ [[package]] name = "egui_glow" -version = "0.36.0" +version = "0.36.1" dependencies = [ "bytemuck", "document-features", @@ -1439,7 +1439,7 @@ dependencies = [ [[package]] name = "egui_inspection" -version = "0.36.0" +version = "0.36.1" dependencies = [ "document-features", "egui", @@ -1452,7 +1452,7 @@ dependencies = [ [[package]] name = "egui_kittest" -version = "0.36.0" +version = "0.36.1" dependencies = [ "dify", "document-features", @@ -1473,7 +1473,7 @@ dependencies = [ [[package]] name = "egui_tests" -version = "0.36.0" +version = "0.36.1" dependencies = [ "egui", "egui_extras", @@ -1503,7 +1503,7 @@ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e" [[package]] name = "emath" -version = "0.36.0" +version = "0.36.1" dependencies = [ "bytemuck", "document-features", @@ -1601,7 +1601,7 @@ dependencies = [ [[package]] name = "epaint" -version = "0.36.0" +version = "0.36.1" dependencies = [ "ahash", "bytemuck", @@ -1630,7 +1630,7 @@ dependencies = [ [[package]] name = "epaint_default_fonts" -version = "0.36.0" +version = "0.36.1" [[package]] name = "equivalent" @@ -3594,7 +3594,7 @@ dependencies = [ [[package]] name = "popups" -version = "0.36.0" +version = "0.36.1" dependencies = [ "eframe", "env_logger", @@ -5903,7 +5903,7 @@ checksum = "ec7a2a501ed189703dba8b08142f057e887dfc4b2cc4db2d343ac6376ba3e0b9" [[package]] name = "xtask" -version = "0.36.0" +version = "0.36.1" [[package]] name = "yaml-rust" diff --git a/Cargo.toml b/Cargo.toml index fc8010f24..007639978 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ members = [ edition = "2024" license = "MIT OR Apache-2.0" rust-version = "1.95" -version = "0.36.0" +version = "0.36.1" [profile.release] @@ -56,19 +56,19 @@ opt-level = 2 [workspace.dependencies] -emath = { version = "0.36.0", path = "crates/emath", default-features = false } -ecolor = { version = "0.36.0", path = "crates/ecolor", default-features = false } -epaint = { version = "0.36.0", path = "crates/epaint", default-features = false } -epaint_default_fonts = { version = "0.36.0", path = "crates/epaint_default_fonts" } -egui = { version = "0.36.0", path = "crates/egui", default-features = false } -egui-winit = { version = "0.36.0", path = "crates/egui-winit", default-features = false } -egui_extras = { version = "0.36.0", path = "crates/egui_extras", default-features = false } -egui-wgpu = { version = "0.36.0", path = "crates/egui-wgpu", default-features = false } -egui_demo_lib = { version = "0.36.0", path = "crates/egui_demo_lib", default-features = false } -egui_glow = { version = "0.36.0", path = "crates/egui_glow", default-features = false } -egui_inspection = { version = "0.36.0", path = "crates/egui_inspection", default-features = false } -egui_kittest = { version = "0.36.0", path = "crates/egui_kittest", default-features = false } -eframe = { version = "0.36.0", path = "crates/eframe", default-features = false } +emath = { version = "0.36.1", path = "crates/emath", default-features = false } +ecolor = { version = "0.36.1", path = "crates/ecolor", default-features = false } +epaint = { version = "0.36.1", path = "crates/epaint", default-features = false } +epaint_default_fonts = { version = "0.36.1", path = "crates/epaint_default_fonts" } +egui = { version = "0.36.1", path = "crates/egui", default-features = false } +egui-winit = { version = "0.36.1", path = "crates/egui-winit", default-features = false } +egui_extras = { version = "0.36.1", path = "crates/egui_extras", default-features = false } +egui-wgpu = { version = "0.36.1", path = "crates/egui-wgpu", default-features = false } +egui_demo_lib = { version = "0.36.1", path = "crates/egui_demo_lib", default-features = false } +egui_glow = { version = "0.36.1", path = "crates/egui_glow", default-features = false } +egui_inspection = { version = "0.36.1", path = "crates/egui_inspection", default-features = false } +egui_kittest = { version = "0.36.1", path = "crates/egui_kittest", default-features = false } +eframe = { version = "0.36.1", path = "crates/eframe", default-features = false } accesskit = "0.24.1" accesskit_consumer = "0.35.0" # Can't update to 0.36+: kittest 0.4 pins accesskit_consumer 0.35, so bumping splits it into two versions diff --git a/crates/ecolor/CHANGELOG.md b/crates/ecolor/CHANGELOG.md index 349a6e52f..31300e172 100644 --- a/crates/ecolor/CHANGELOG.md +++ b/crates/ecolor/CHANGELOG.md @@ -6,6 +6,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.36.1 - 2026-08-07 +Nothing new + + ## 0.36.0 - 2026-08-05 Nothing new diff --git a/crates/eframe/CHANGELOG.md b/crates/eframe/CHANGELOG.md index 0e904260f..eb3dcb350 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.36.1 - 2026-08-07 +Nothing new + + ## 0.36.0 - 2026-08-05 ### 🔧 Changed * Improve robustness of text input handling for `eframe/web` [#8045](https://github.com/emilk/egui/pull/8045) by [@umajho](https://github.com/umajho) diff --git a/crates/egui-wgpu/CHANGELOG.md b/crates/egui-wgpu/CHANGELOG.md index e45767f52..b2d1063b3 100644 --- a/crates/egui-wgpu/CHANGELOG.md +++ b/crates/egui-wgpu/CHANGELOG.md @@ -6,6 +6,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.36.1 - 2026-08-07 +Nothing new + + ## 0.36.0 - 2026-08-05 * Upgrade wgpu to v30 [#8289](https://github.com/emilk/egui/pull/8289) by [@akx](https://github.com/akx) * Fix: ensure mapped range is dropped before unmapping buffer in capture [#8337](https://github.com/emilk/egui/pull/8337) by [@MagicCrazyMan](https://github.com/MagicCrazyMan) diff --git a/crates/egui-winit/CHANGELOG.md b/crates/egui-winit/CHANGELOG.md index f9cc12307..f7ed2fa07 100644 --- a/crates/egui-winit/CHANGELOG.md +++ b/crates/egui-winit/CHANGELOG.md @@ -5,6 +5,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.36.1 - 2026-08-07 +Nothing new + + ## 0.36.0 - 2026-08-05 Nothing new diff --git a/crates/egui_extras/CHANGELOG.md b/crates/egui_extras/CHANGELOG.md index a42cb4d62..db7464d9b 100644 --- a/crates/egui_extras/CHANGELOG.md +++ b/crates/egui_extras/CHANGELOG.md @@ -5,6 +5,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.36.1 - 2026-08-07 +Nothing new + + ## 0.36.0 - 2026-08-05 Nothing new diff --git a/crates/egui_glow/CHANGELOG.md b/crates/egui_glow/CHANGELOG.md index 78197938a..959f16b57 100644 --- a/crates/egui_glow/CHANGELOG.md +++ b/crates/egui_glow/CHANGELOG.md @@ -6,6 +6,10 @@ Changes since the last release can be found at or by running the `scripts/generate_changelog.py` script. +## 0.36.1 - 2026-08-07 +Nothing new + + ## 0.36.0 - 2026-08-05 * Add `egui_inspection::Request::Settle` [#8344](https://github.com/emilk/egui/pull/8344) by [@lucasmerlin](https://github.com/lucasmerlin) diff --git a/crates/egui_kittest/CHANGELOG.md b/crates/egui_kittest/CHANGELOG.md index a588a42a5..fe999ffc9 100644 --- a/crates/egui_kittest/CHANGELOG.md +++ b/crates/egui_kittest/CHANGELOG.md @@ -6,6 +6,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.36.1 - 2026-08-07 +Nothing new + + ## 0.36.0 - 2026-08-05 * Handle `ViewportCommand::InnerSize` in `egui_kittest` [#8350](https://github.com/emilk/egui/pull/8350) by [@lucasmerlin](https://github.com/lucasmerlin) * Report failing pixels by threshold when a kittest snapshot fails [#8360](https://github.com/emilk/egui/pull/8360) by [@emilk](https://github.com/emilk) diff --git a/crates/emath/CHANGELOG.md b/crates/emath/CHANGELOG.md index d0cdae830..2361112d7 100644 --- a/crates/emath/CHANGELOG.md +++ b/crates/emath/CHANGELOG.md @@ -6,6 +6,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.36.1 - 2026-08-07 +Nothing new + + ## 0.36.0 - 2026-08-05 Nothing new diff --git a/crates/epaint/CHANGELOG.md b/crates/epaint/CHANGELOG.md index 15c27e4b4..d0db754f3 100644 --- a/crates/epaint/CHANGELOG.md +++ b/crates/epaint/CHANGELOG.md @@ -5,6 +5,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.36.1 - 2026-08-07 +Nothing new + + ## 0.36.0 - 2026-08-05 * Add `LayoutJob::clear` [#8376](https://github.com/emilk/egui/pull/8376) by [@emilk](https://github.com/emilk) * Add `extra_text_line_spacing` to control vertical spacing between text lines [#8040](https://github.com/emilk/egui/pull/8040) by [@rustbasic](https://github.com/rustbasic) diff --git a/crates/epaint_default_fonts/CHANGELOG.md b/crates/epaint_default_fonts/CHANGELOG.md index 8ee27c5c0..0d6af564f 100644 --- a/crates/epaint_default_fonts/CHANGELOG.md +++ b/crates/epaint_default_fonts/CHANGELOG.md @@ -5,6 +5,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.36.1 - 2026-08-07 +Nothing new + + ## 0.36.0 - 2026-08-05 Nothing new