publish new versions

This commit is contained in:
github-actions[bot]
2026-07-21 10:26:23 +00:00
committed by GitHub
parent ab7489c964
commit 7af38df26a
34 changed files with 151 additions and 74 deletions
+6
View File
@@ -1,5 +1,11 @@
# Changelog
## \[2.4.4]
### Dependencies
- Upgraded to `deep-link@2.4.10`
## \[2.4.3]
- [`d1573877`](https://github.com/tauri-apps/plugins-workspace/commit/d1573877226e609461761aa538cd0ca4f24d22be) ([#3466](https://github.com/tauri-apps/plugins-workspace/pull/3466) by [@bajoca05](https://github.com/tauri-apps/plugins-workspace/../../bajoca05)) Fix blocked thread on the single-instance plugin for MacOS: replace standard `UnixListener` with `tokio::net::UnixListener`, so the task can yield.
+2 -2
View File
@@ -1,6 +1,6 @@
[package]
name = "tauri-plugin-single-instance"
version = "2.4.3"
version = "2.4.4"
description = "Ensure a single instance of your tauri app is running."
authors = { workspace = true }
license = { workspace = true }
@@ -22,7 +22,7 @@ serde_json = { workspace = true }
tauri = { workspace = true }
tracing = { workspace = true }
thiserror = { workspace = true }
tauri-plugin-deep-link = { path = "../deep-link", version = "2.4.9", optional = true }
tauri-plugin-deep-link = { path = "../deep-link", version = "2.4.10", optional = true }
semver = { version = "1", optional = true }
tokio = { version = "1", features = ["net"] }