Skip to content

Commit 05045f9

Browse files
publish new versions (#3249)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 4f53e36 commit 05045f9

11 files changed

Lines changed: 33 additions & 24 deletions

File tree

.changes/fix-register-deep-link.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changes/fix-unconventional-dbus-names.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

plugins/deep-link/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## \[2.4.7]
4+
5+
- [`8374e997`](https://github.com/tauri-apps/plugins-workspace/commit/8374e997b82c95516fc0c1f6d665d9fc3b52edf8) ([#3258](https://github.com/tauri-apps/plugins-workspace/pull/3258) by [@lucasfernog](https://github.com/tauri-apps/plugins-workspace/../../lucasfernog)) Fix runtime deep link registration failing on Linux when the app path has spaces.
6+
37
## \[2.4.6]
48

59
- [`28048039`](https://github.com/tauri-apps/plugins-workspace/commit/28048039496e84b46847c008416d341f1349e30e) ([#3143](https://github.com/tauri-apps/plugins-workspace/pull/3143) by [@Tunglies](https://github.com/tauri-apps/plugins-workspace/../../Tunglies)) Fix clippy warnings. No user facing changes.

plugins/deep-link/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tauri-plugin-deep-link"
3-
version = "2.4.6"
3+
version = "2.4.7"
44
description = "Set your Tauri application as the default handler for an URL"
55
authors = { workspace = true }
66
license = { workspace = true }

plugins/deep-link/examples/app/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## \[2.2.10]
4+
5+
### Dependencies
6+
7+
- Upgraded to `deep-link-js@2.4.7`
8+
39
## \[2.2.9]
410

511
### Dependencies

plugins/deep-link/examples/app/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "deep-link-example",
33
"private": true,
4-
"version": "2.2.9",
4+
"version": "2.2.10",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",
@@ -11,7 +11,7 @@
1111
},
1212
"dependencies": {
1313
"@tauri-apps/api": "^2.10.1",
14-
"@tauri-apps/plugin-deep-link": "2.4.6"
14+
"@tauri-apps/plugin-deep-link": "2.4.7"
1515
},
1616
"devDependencies": {
1717
"@tauri-apps/cli": "2.10.0",

plugins/deep-link/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tauri-apps/plugin-deep-link",
3-
"version": "2.4.6",
3+
"version": "2.4.7",
44
"description": "Set your Tauri application as the default handler for an URL",
55
"license": "MIT OR Apache-2.0",
66
"authors": [

plugins/single-instance/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## \[2.4.0]
4+
5+
### Dependencies
6+
7+
- Upgraded to `deep-link@2.4.7`
8+
9+
### fix
10+
11+
- [`98e2c11e`](https://github.com/tauri-apps/plugins-workspace/commit/98e2c11eefc3ee562f1ed280efe7e8ea6ff0f3b0) ([#3194](https://github.com/tauri-apps/plugins-workspace/pull/3194) by [@mrquantumoff](https://github.com/tauri-apps/plugins-workspace/../../mrquantumoff)) **Breaking Change:** On Linux, the DBus ID/name will now be `<bundle-id>.SingleInstance` instead of `org.<bundle_id_underscores>.SingleInstance` to follow DBus specifications.
12+
13+
This will break the single-instance mechanism across different app versions if the app was installed multiple times.
14+
15+
Added `dbus_id` builder method, which can be used to restore previous behavior. For a bundle identifier of `com.tauri.my-example` this would be `dbus_id("org.com_tauri_my_example")`.
16+
317
## \[2.3.7]
418

519
### Dependencies

plugins/single-instance/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tauri-plugin-single-instance"
3-
version = "2.3.7"
3+
version = "2.4.0"
44
description = "Ensure a single instance of your tauri app is running."
55
authors = { workspace = true }
66
license = { workspace = true }
@@ -22,7 +22,7 @@ serde_json = { workspace = true }
2222
tauri = { workspace = true }
2323
tracing = { workspace = true }
2424
thiserror = { workspace = true }
25-
tauri-plugin-deep-link = { path = "../deep-link", version = "2.4.6", optional = true }
25+
tauri-plugin-deep-link = { path = "../deep-link", version = "2.4.7", optional = true }
2626
semver = { version = "1", optional = true }
2727

2828
[target."cfg(target_os = \"windows\")".dependencies.windows-sys]

0 commit comments

Comments
 (0)