From 2fb00595981343792794e62f6f0c0eb3b742adbd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 14 May 2024 17:44:52 +0300 Subject: [PATCH] Apply Version Updates From Current Changes (#162) Co-authored-by: amrbashir --- .changes/new-leave-events.md | 10 ---------- CHANGELOG.md | 9 +++++++++ Cargo.toml | 2 +- 3 files changed, 10 insertions(+), 11 deletions(-) delete mode 100644 .changes/new-leave-events.md diff --git a/.changes/new-leave-events.md b/.changes/new-leave-events.md deleted file mode 100644 index f7b6eec..0000000 --- a/.changes/new-leave-events.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -"tray-icon": "minor" ---- - -This release contains **breaking change** to the event structs in order to be able to add new `Enter`, `Move` and `Leave` events: - -- Changed `TrayIconEvent` to be an enum instead of a struct. -- Added new events for when the mouse enters, moves or leaves the tray icon region. -- Removed `ClickType` enum and replaced it with `MouseButton` enum. -- Added `MouseButtonState` enum. diff --git a/CHANGELOG.md b/CHANGELOG.md index 17328bd..ea5575b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## \[0.14.0] + +- [`587292b`](https://www.github.com/tauri-apps/tray-icon/commit/587292b2e7bfbebdd2677c51b34c6362730d5111)([#161](https://www.github.com/tauri-apps/tray-icon/pull/161)) This release contains **breaking change** to the event structs in order to be able to add new `Enter`, `Move` and `Leave` events: + + - Changed `TrayIconEvent` to be an enum instead of a struct. + - Added new events for when the mouse enters, moves or leaves the tray icon region. + - Removed `ClickType` enum and replaced it with `MouseButton` enum. + - Added `MouseButtonState` enum. + ## \[0.13.5] - [`a1cd50e`](https://www.github.com/tauri-apps/tray-icon/commit/a1cd50e53021474ad87cdf2e269acfb56d36cc14)([#145](https://www.github.com/tauri-apps/tray-icon/pull/145)) Fix tray icon gets blurry after changing dpi on Windows diff --git a/Cargo.toml b/Cargo.toml index e971a99..1df66a2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tray-icon" -version = "0.13.5" +version = "0.14.0" edition = "2021" description = "Create tray icons for desktop applications" homepage = "https://github.com/tauri-apps/tray-icon"