Skip to content

Commit 238e0da

Browse files
authored
publish new versions
1 parent b7ff3a6 commit 238e0da

File tree

12 files changed

+45
-13
lines changed

12 files changed

+45
-13
lines changed

.changes/pre.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,11 @@
99
".changes/deep-link-get-current-desktop.md",
1010
".changes/deep-link-on-new-url.md",
1111
".changes/deep-link-register-all.md",
12+
".changes/deep-link-space-in-path.md",
1213
".changes/dialog-asset-scope.md",
1314
".changes/dialog-file-response-non-exhaustive.md",
1415
".changes/dialog-return-path.md",
16+
".changes/dialog-rfd-015.md",
1517
".changes/fix-barcodae-scanner-imports.md",
1618
".changes/fix-clipboard-warnings-sdk.md",
1719
".changes/fix-deep-link-config.md",
@@ -55,6 +57,9 @@
5557
".changes/update-geolocation-api.md",
5658
".changes/update-tauri-rc-12.md",
5759
".changes/update-tauri-rc-3.md",
60+
".changes/updater-endpoint-version-encoded.md",
61+
".changes/updater-endpoints-result.md",
62+
".changes/updater-insecure-transport-protocol.md",
5863
".changes/updater-js-headers-download-crate.md",
5964
".changes/updater-js-headers-download.md",
6065
".changes/window-state-physical-size.md"

Cargo.lock

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

examples/api/src-tauri/CHANGELOG.md

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

3+
## \[2.0.0-rc.8]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
- Upgraded to `[email protected]`
9+
310
## \[2.0.0-rc.7]
411

512
### Dependencies

examples/api/src-tauri/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "api"
33
publish = false
4-
version = "2.0.0-rc.7"
4+
version = "2.0.0-rc.8"
55
description = "An example Tauri Application showcasing the api"
66
edition = "2021"
77
rust-version = { workspace = true }
@@ -24,7 +24,7 @@ tauri-plugin-fs = { path = "../../../plugins/fs", version = "2.0.0-rc.5", featur
2424
"watch",
2525
] }
2626
tauri-plugin-clipboard-manager = { path = "../../../plugins/clipboard-manager", version = "2.0.0-rc.4" }
27-
tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "2.0.0-rc.7" }
27+
tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "2.0.0-rc.8" }
2828
tauri-plugin-http = { path = "../../../plugins/http", features = [
2929
"multipart",
3030
], version = "2.0.0-rc.5" }
@@ -52,7 +52,7 @@ features = [
5252
[target."cfg(any(target_os = \"macos\", windows, target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies]
5353
tauri-plugin-cli = { path = "../../../plugins/cli", version = "2.0.0-rc.1" }
5454
tauri-plugin-global-shortcut = { path = "../../../plugins/global-shortcut", version = "2.0.0-rc.2" }
55-
tauri-plugin-updater = { path = "../../../plugins/updater", version = "2.0.0-rc.3" }
55+
tauri-plugin-updater = { path = "../../../plugins/updater", version = "2.0.0-rc.4" }
5656
tauri-plugin-window-state = { path = "../../../plugins/window-state", version = "2.0.0-rc.3" }
5757

5858
[target."cfg(any(target_os = \"android\", target_os = \"ios\"))".dependencies]

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.0.0-rc.7]
4+
5+
- [`3168e176`](https://github.com/tauri-apps/plugins-workspace/commit/3168e176031a61215be542595ba90ca51f8f2d97) ([#1806](https://github.com/tauri-apps/plugins-workspace/pull/1806) by [@auggiebennett](https://github.com/tauri-apps/plugins-workspace/../../auggiebennett)) Fix fails to start when having spaces in the main binary path on Windows
6+
37
## \[2.0.0-rc.6]
48

59
- [`6f3f6679`](https://github.com/tauri-apps/plugins-workspace/commit/6f3f66794a87ef9d1c16667c425d5ad7091a9c2f) ([#1780](https://github.com/tauri-apps/plugins-workspace/pull/1780)) Added `DeepLink::on_open_url` function to match the JavaScript API implementation,

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.0.0-rc.6"
3+
version = "2.0.0-rc.7"
44
description = "Set your Tauri application as the default handler for an URL"
55
authors = { workspace = true }
66
license = { workspace = true }

plugins/dialog/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.0.0-rc.8]
4+
5+
- [`6bf1bd8d`](https://github.com/tauri-apps/plugins-workspace/commit/6bf1bd8d44bb95618590aa066e638509b014e0f9) ([#1805](https://github.com/tauri-apps/plugins-workspace/pull/1805) by [@renovate](https://github.com/tauri-apps/plugins-workspace/../../renovate)) Update rfd to 0.15
6+
37
## \[2.0.0-rc.7]
48

59
### Dependencies

plugins/dialog/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-dialog"
3-
version = "2.0.0-rc.7"
3+
version = "2.0.0-rc.8"
44
description = "Native system dialogs for opening and saving files along with message dialogs on your Tauri application."
55
edition = { workspace = true }
66
authors = { workspace = true }

plugins/single-instance/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.0.0-rc.5]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
39
## \[2.0.0-rc.4]
410

511
### 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.0.0-rc.4"
3+
version = "2.0.0-rc.5"
44
description = "Ensure a single instance of your tauri app is running."
55
authors = { workspace = true }
66
license = { workspace = true }
@@ -19,7 +19,7 @@ serde_json = { workspace = true }
1919
tauri = { workspace = true }
2020
log = { workspace = true }
2121
thiserror = { workspace = true }
22-
tauri-plugin-deep-link = { path = "../deep-link", version = "2.0.0-rc.6", optional = true }
22+
tauri-plugin-deep-link = { path = "../deep-link", version = "2.0.0-rc.7", optional = true }
2323
semver = { version = "1", optional = true }
2424

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

0 commit comments

Comments
 (0)