diff --git a/.changes/add-context-menu-dismiss-result.md b/.changes/add-context-menu-dismiss-result.md deleted file mode 100644 index 426e58f4..00000000 --- a/.changes/add-context-menu-dismiss-result.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"muda": minor ---- - -Return `bool` in `ContextMenu::show_context_menu_for_hwnd`, `ContextMenu::show_context_menu_for_nsview` and `ContextMenu::show_context_menu_for_gtk_window` to indicate why the context menu was closed. \ No newline at end of file diff --git a/.changes/expose-modifiers-and-key-on-accelerator.md b/.changes/expose-modifiers-and-key-on-accelerator.md deleted file mode 100644 index 6d2fab52..00000000 --- a/.changes/expose-modifiers-and-key-on-accelerator.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"muda": patch ---- - -Add `Accelerator::modifiers` and `Accelerator::key` getter methods. \ No newline at end of file diff --git a/.changes/static-thread-local.md b/.changes/static-thread-local.md deleted file mode 100644 index f0e3c09f..00000000 --- a/.changes/static-thread-local.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"muda": "patch" ---- - -Change internal `mut static` to use `thread_local!` and `Cell` instead. diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a6ea22b..84402af4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[0.16.0] + +- [`cf9dcfa`](https://www.github.com/tauri-apps/muda/commit/cf9dcfafd000336db4e9f239ed5581539d9168f6) ([#236](https://www.github.com/tauri-apps/muda/pull/236)) Return `bool` in `ContextMenu::show_context_menu_for_hwnd`, `ContextMenu::show_context_menu_for_nsview` and `ContextMenu::show_context_menu_for_gtk_window` to indicate why the context menu was closed. +- [`99ec648`](https://www.github.com/tauri-apps/muda/commit/99ec648de4dfd3b864540b1e30279c2c7afc1abd) ([#244](https://www.github.com/tauri-apps/muda/pull/244)) Add `Accelerator::modifiers` and `Accelerator::key` getter methods. +- [`e6b68f9`](https://www.github.com/tauri-apps/muda/commit/e6b68f9c4da1d47e612569a60a9da9199b324d81) Change internal `mut static` to use `thread_local!` and `Cell` instead. + ## \[0.15.3] - [`11a1ef8`](https://www.github.com/tauri-apps/muda/commit/11a1ef84fa85cbe2f0bfb0c3a986d7a36d84288f) ([#241](https://www.github.com/tauri-apps/muda/pull/241) by [@amrbashir](https://www.github.com/tauri-apps/muda/../../amrbashir)) On Windows, fix changing state of menu items inside a `muda::Menu` not immedietly reflected on the window menu bar. diff --git a/Cargo.toml b/Cargo.toml index 99488c50..4203cc20 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "muda" -version = "0.15.3" +version = "0.16.0" description = "Menu Utilities for Desktop Applications" edition = "2021" keywords = ["windowing", "menu"]