Apply Version Updates From Current Changes (#76)

Co-authored-by: amrbashir <amrbashir@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2024-04-24 02:38:27 +02:00
committed by GitHub
parent a468ede66a
commit 75dc206d73
4 changed files with 7 additions and 12 deletions

View File

@@ -1,5 +0,0 @@
---
"global-hotkey": "patch"
---
Add `serde` feature flag and implement `Deserialize` and `Serialize` for `GlobalHotKeyEvent`, `HotKeyState` and `HotKey` types.

View File

@@ -1,5 +0,0 @@
---
"global-hotkey": "patch"
---
Add `HotKey::into_string` method and implement `Display` for `HotKey`.

View File

@@ -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.

View File

@@ -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"