Skip to content

Commit e46f084

Browse files
authored
publish new versions
1 parent fc9b189 commit e46f084

File tree

18 files changed

+79
-24
lines changed

18 files changed

+79
-24
lines changed

.changes/pre.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,16 @@
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",
1820
".changes/fix-fs-app-scopes.md",
21+
".changes/fix-fs-scope-unknown-path.md",
1922
".changes/fix-fs-write-file-android.md",
2023
".changes/fix-http-plugin-abort.md",
2124
".changes/fix-ios-file-dialog-default-mode.md",
@@ -55,6 +58,9 @@
5558
".changes/update-geolocation-api.md",
5659
".changes/update-tauri-rc-12.md",
5760
".changes/update-tauri-rc-3.md",
61+
".changes/updater-endpoint-version-encoded.md",
62+
".changes/updater-endpoints-result.md",
63+
".changes/updater-insecure-transport-protocol.md",
5864
".changes/updater-js-headers-download-crate.md",
5965
".changes/updater-js-headers-download.md",
6066
".changes/window-state-physical-size.md"

Cargo.lock

Lines changed: 8 additions & 8 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: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## \[2.0.0-rc.8]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
- Upgraded to `[email protected]`
9+
- Upgraded to `[email protected]`
10+
- Upgraded to `[email protected]`
11+
312
## \[2.0.0-rc.7]
413

514
### Dependencies

examples/api/src-tauri/Cargo.toml

Lines changed: 5 additions & 5 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 }
@@ -20,14 +20,14 @@ serde = { workspace = true }
2020
tiny_http = "0.12"
2121
log = { workspace = true }
2222
tauri-plugin-log = { path = "../../../plugins/log", version = "2.0.0-rc.2" }
23-
tauri-plugin-fs = { path = "../../../plugins/fs", version = "2.0.0-rc.5", features = [
23+
tauri-plugin-fs = { path = "../../../plugins/fs", version = "2.0.0-rc.6", features = [
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",
30-
], version = "2.0.0-rc.5" }
30+
], version = "2.0.0-rc.6" }
3131
tauri-plugin-notification = { path = "../../../plugins/notification", version = "2.0.0-rc.5", features = [
3232
"windows7-compat",
3333
] }
@@ -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: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
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+
7+
### Dependencies
8+
9+
- Upgraded to `[email protected]`
10+
311
## \[2.0.0-rc.7]
412

513
### Dependencies

plugins/dialog/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-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 }
@@ -27,7 +27,7 @@ tauri = { workspace = true }
2727
log = { workspace = true }
2828
thiserror = { workspace = true }
2929
url = { workspace = true }
30-
tauri-plugin-fs = { path = "../fs", version = "2.0.0-rc.5" }
30+
tauri-plugin-fs = { path = "../fs", version = "2.0.0-rc.6" }
3131

3232
[target.'cfg(target_os = "ios")'.dependencies]
3333
tauri = { workspace = true, features = ["wry"] }

plugins/fs/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.6]
4+
5+
- [`fc9b189e`](https://github.com/tauri-apps/plugins-workspace/commit/fc9b189e83a29bd750714ec6336133c6eabdfa20) ([#1837](https://github.com/tauri-apps/plugins-workspace/pull/1837) by [@FabianLars](https://github.com/tauri-apps/plugins-workspace/../../FabianLars)) Fix failing to deserialize capability file when using an OS specific path in the scope that is not available on the current OS.
6+
37
## \[2.0.0-rc.5]
48

59
- [`cc03ccf5`](https://github.com/tauri-apps/plugins-workspace/commit/cc03ccf5e0e4be8bbf50bbdebe957c84be7f779b) ([#1774](https://github.com/tauri-apps/plugins-workspace/pull/1774)) Fix `scope-app`, `scope-app-recursive` and `scope-index` not properly enabling the application paths.

plugins/fs/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-fs"
3-
version = "2.0.0-rc.5"
3+
version = "2.0.0-rc.6"
44
description = "Access the file system."
55
authors = { workspace = true }
66
license = { workspace = true }

0 commit comments

Comments
 (0)