Skip to content

Commit fb62d03

Browse files
publish new versions (#1807)
Co-authored-by: lucasfernog <[email protected]>
1 parent 7e5e344 commit fb62d03

33 files changed

+140
-43
lines changed

.changes/pre.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,23 @@
44
".changes/android-dialog-save.md",
55
".changes/barcode-dependencies.md",
66
".changes/barcode-scanner-validate-plist.md",
7+
".changes/cli-hidden-structs.md",
78
".changes/consolidate-permission-state.md",
89
".changes/deep-link-event.md",
910
".changes/deep-link-get-current-desktop.md",
1011
".changes/deep-link-on-new-url.md",
1112
".changes/deep-link-register-all.md",
13+
".changes/deep-link-space-in-path.md",
1214
".changes/dialog-asset-scope.md",
1315
".changes/dialog-file-response-non-exhaustive.md",
1416
".changes/dialog-return-path.md",
17+
".changes/dialog-rfd-015.md",
18+
".changes/feat-multiple-sql-backends.md",
1519
".changes/fix-barcodae-scanner-imports.md",
1620
".changes/fix-clipboard-warnings-sdk.md",
1721
".changes/fix-deep-link-config.md",
1822
".changes/fix-fs-app-scopes.md",
23+
".changes/fix-fs-scope-unknown-path.md",
1924
".changes/fix-fs-write-file-android.md",
2025
".changes/fix-http-plugin-abort.md",
2126
".changes/fix-ios-file-dialog-default-mode.md",
@@ -37,24 +42,32 @@
3742
".changes/haptics-release.md",
3843
".changes/iife-varname-spacing.md",
3944
".changes/ios-dialog-save.md",
45+
".changes/native-dialog-button-text.md",
4046
".changes/notification-body-optional-ios.md",
4147
".changes/notification-permission-type-change.md",
48+
".changes/positioner-v2-handleIconState.md",
4249
".changes/rc.md",
4350
".changes/remove-target-sdk.md",
4451
".changes/resolve-content-uris.md",
4552
".changes/shell-open-regex-match-string.md",
4653
".changes/shell-regex-match-string.md",
54+
".changes/shell-schema-required-sidcar.md",
4755
".changes/single-instance-deep-link.md",
4856
".changes/single-instance-optional-deep-link.md",
4957
".changes/single-instance-windows-sys.0.59.md",
5058
".changes/sql-uuid-type.md",
59+
".changes/store-api-refactor.md",
60+
".changes/store-auto-save.md",
5161
".changes/store-remove-mobile-plugin.md",
5262
".changes/swift-build-older-versions.md",
5363
".changes/tauri-rc-8.md",
5464
".changes/update-fs-api-docs.md",
5565
".changes/update-geolocation-api.md",
5666
".changes/update-tauri-rc-12.md",
5767
".changes/update-tauri-rc-3.md",
68+
".changes/updater-endpoint-version-encoded.md",
69+
".changes/updater-endpoints-result.md",
70+
".changes/updater-insecure-transport-protocol.md",
5871
".changes/updater-js-headers-download-crate.md",
5972
".changes/updater-js-headers-download.md",
6073
".changes/window-state-physical-size.md"

Cargo.lock

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

examples/api/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

examples/api/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "svelte-app",
33
"private": true,
4-
"version": "2.0.0-rc.4",
4+
"version": "2.0.0-rc.5",
55
"type": "module",
66
"scripts": {
77
"dev": "vite --clearScreen false",
@@ -25,7 +25,7 @@
2525
"@tauri-apps/plugin-os": "2.0.0-rc.1",
2626
"@tauri-apps/plugin-process": "2.0.0-rc.1",
2727
"@tauri-apps/plugin-shell": "2.0.0-rc.1",
28-
"@tauri-apps/plugin-store": "2.0.0-rc.1",
28+
"@tauri-apps/plugin-store": "2.0.0-rc.2",
2929
"@tauri-apps/plugin-updater": "2.0.0-rc.2",
3030
"@zerodevx/svelte-json-view": "1.0.11"
3131
},

examples/api/src-tauri/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
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+
- Upgraded to `[email protected]`
12+
- Upgraded to `[email protected]`
13+
- Upgraded to `[email protected]`
14+
315
## \[2.0.0-rc.7]
416

517
### Dependencies

examples/api/src-tauri/Cargo.toml

Lines changed: 8 additions & 8 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,21 +20,21 @@ 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
] }
3434
tauri-plugin-os = { path = "../../../plugins/os", version = "2.0.0-rc.1" }
3535
tauri-plugin-process = { path = "../../../plugins/process", version = "2.0.0-rc.1" }
36-
tauri-plugin-shell = { path = "../../../plugins/shell", version = "2.0.0-rc.3" }
37-
tauri-plugin-store = { path = "../../../plugins/store", version = "2.0.0-rc.3" }
36+
tauri-plugin-shell = { path = "../../../plugins/shell", version = "2.0.0-rc.4" }
37+
tauri-plugin-store = { path = "../../../plugins/store", version = "2.0.0-rc.4" }
3838

3939
[dependencies.tauri]
4040
workspace = true
@@ -50,9 +50,9 @@ features = [
5050
]
5151

5252
[target."cfg(any(target_os = \"macos\", windows, target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies]
53-
tauri-plugin-cli = { path = "../../../plugins/cli", version = "2.0.0-rc.1" }
53+
tauri-plugin-cli = { path = "../../../plugins/cli", version = "2.0.0-rc.2" }
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/cli/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.2]
4+
5+
- [`68579934`](https://github.com/tauri-apps/plugins-workspace/commit/68579934c93f6ed2edbc97474560d6a8a00e8f70) ([#1856](https://github.com/tauri-apps/plugins-workspace/pull/1856) by [@amrbashir](https://github.com/tauri-apps/plugins-workspace/../../amrbashir)) Expose `Matches`, `SubcommandMatches` and `ArgData` structs.
6+
37
## \[2.0.0-rc.1]
48

59
- [`e2e97db5`](https://github.com/tauri-apps/plugins-workspace/commit/e2e97db51983267f5be84d4f6f0278d58834d1f5) ([#1701](https://github.com/tauri-apps/plugins-workspace/pull/1701) by [@lucasfernog](https://github.com/tauri-apps/plugins-workspace/../../lucasfernog)) Update to tauri 2.0.0-rc.8

plugins/cli/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-cli"
3-
version = "2.0.0-rc.1"
3+
version = "2.0.0-rc.2"
44
description = "Parse arguments from your Tauri application's command line interface."
55
edition = { workspace = true }
66
authors = { workspace = true }

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 }

0 commit comments

Comments
 (0)