diff --git a/.changes/fix-windows-dangling-pointer.md b/.changes/fix-windows-dangling-pointer.md deleted file mode 100644 index b1f67291..00000000 --- a/.changes/fix-windows-dangling-pointer.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"muda": patch ---- - -On Windows, fixed a `dangling` pointer crash when `Menu::remove_for_hwnd` is called before dropping that `Menu` and then attached a new `Menu` diff --git a/CHANGELOG.md b/CHANGELOG.md index 415fe01e..f0bf11f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[0.19.3] + +- [`73106f5`](https://www.github.com/tauri-apps/muda/commit/73106f5c548a08bfeea35a1627ea533726f5ba2e) ([#363](https://www.github.com/tauri-apps/muda/pull/363) by [@Legend-Master](https://www.github.com/tauri-apps/muda/../../Legend-Master)) On Windows, fixed a `dangling` pointer crash when `Menu::remove_for_hwnd` is called before dropping that `Menu` and then attached a new `Menu` + ## \[0.19.2] - [`597e1bc`](https://www.github.com/tauri-apps/muda/commit/597e1bcb300fce429643725810e63a95333c7046) ([#354](https://www.github.com/tauri-apps/muda/pull/354) by [@kohii](https://www.github.com/tauri-apps/muda/../../kohii)) On macOS, render `Key::Enter` accelerators in menus as ⏎ (Return) instead of ⌤ (numeric-keypad Enter). Activation behavior is unchanged. diff --git a/Cargo.lock b/Cargo.lock index fdfbc1fa..cdfb60e0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1534,7 +1534,7 @@ dependencies = [ [[package]] name = "muda" -version = "0.19.2" +version = "0.19.3" dependencies = [ "crossbeam-channel", "dpi", diff --git a/Cargo.toml b/Cargo.toml index 768244e9..c6fcc7f1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "muda" -version = "0.19.2" +version = "0.19.3" description = "Menu Utilities for Desktop Applications" edition = "2021" keywords = ["windowing", "menu"]