diff --git a/.changes/serde.md b/.changes/serde.md deleted file mode 100644 index b3764c3..0000000 --- a/.changes/serde.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"global-hotkey": "patch" ---- - -Add `serde` feature flag and implement `Deserialize` and `Serialize` for `GlobalHotKeyEvent`, `HotKeyState` and `HotKey` types. diff --git a/.changes/to_string.md b/.changes/to_string.md deleted file mode 100644 index f685bd0..0000000 --- a/.changes/to_string.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"global-hotkey": "patch" ---- - -Add `HotKey::into_string` method and implement `Display` for `HotKey`. diff --git a/CHANGELOG.md b/CHANGELOG.md index b9ef7fb..bbf920e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## \[0.5.3] + +- [`a468ede`](https://www.github.com/tauri-apps/global-hotkey/commit/a468ede66aa2102f146bebd71ad618eff550997a)([#75](https://www.github.com/tauri-apps/global-hotkey/pull/75)) Add `serde` feature flag and implement `Deserialize` and `Serialize` for `GlobalHotKeyEvent`, `HotKeyState` and `HotKey` types. +- [`a468ede`](https://www.github.com/tauri-apps/global-hotkey/commit/a468ede66aa2102f146bebd71ad618eff550997a)([#75](https://www.github.com/tauri-apps/global-hotkey/pull/75)) Add `HotKey::into_string` method and implement `Display` for `HotKey`. + ## \[0.5.2] - [`c530be0`](https://www.github.com/tauri-apps/global-hotkey/commit/c530be0dbf939d2dd8d05eacc2071f493769a834)([#71](https://www.github.com/tauri-apps/global-hotkey/pull/71)) Support registering media play/pause/stop/next/prev keys. diff --git a/Cargo.toml b/Cargo.toml index e34e655..125712c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "global-hotkey" -version = "0.5.2" +version = "0.5.3" description = "Global hotkeys for Desktop Applications" edition = "2021" keywords = [ "windowing", "global", "global-hotkey", "hotkey" ] @@ -18,7 +18,7 @@ crossbeam-channel = "0.5" keyboard-types = "0.7" once_cell = "1" thiserror = "1" -serde = { version = "1", optional = true, features = ["derive"] } +serde = { version = "1", optional = true, features = [ "derive" ] } [target."cfg(target_os = \"macos\")".dependencies] bitflags = "2"