Skip to content

Commit d563595

Browse files
authored
publish new versions
1 parent 0d5e7e2 commit d563595

File tree

20 files changed

+106
-38
lines changed

20 files changed

+106
-38
lines changed

.changes/pre.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,21 @@
22
"tag": "rc",
33
"changes": [
44
".changes/android-dialog-save.md",
5+
".changes/dialog-file-response-non-exhaustive.md",
6+
".changes/dialog-return-path.md",
57
".changes/fix-http-plugin-abort.md",
68
".changes/fix-linux-updater-permission-error.md",
9+
".changes/fs-scope-recursive-allow-read-dir.md",
710
".changes/geolocation-release.md",
11+
".changes/global-shortcut-0.6.md",
812
".changes/haptics-release.md",
913
".changes/iife-varname-spacing.md",
1014
".changes/rc.md",
1115
".changes/remove-target-sdk.md",
16+
".changes/resolve-content-uris.md",
1217
".changes/shell-open-regex-match-string.md",
1318
".changes/shell-regex-match-string.md",
19+
".changes/single-instance-windows-sys.0.59.md",
1420
".changes/swift-build-older-versions.md",
1521
".changes/update-fs-api-docs.md",
1622
".changes/update-tauri-rc-3.md"

Cargo.lock

Lines changed: 7 additions & 7 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.2]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
39
## \[2.0.0-rc.1]
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.1",
4+
"version": "2.0.0-rc.2",
55
"type": "module",
66
"scripts": {
77
"dev": "vite --clearScreen false",
@@ -14,7 +14,7 @@
1414
"@tauri-apps/plugin-biometric": "2.0.0-rc.0",
1515
"@tauri-apps/plugin-cli": "2.0.0-rc.0",
1616
"@tauri-apps/plugin-clipboard-manager": "2.0.0-rc.0",
17-
"@tauri-apps/plugin-dialog": "2.0.0-rc.0",
17+
"@tauri-apps/plugin-dialog": "2.0.0-rc.1",
1818
"@tauri-apps/plugin-fs": "2.0.0-rc.1",
1919
"@tauri-apps/plugin-global-shortcut": "2.0.0-rc.0",
2020
"@tauri-apps/plugin-http": "2.0.0-rc.1",

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.2]
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.1]
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.1"
4+
version = "2.0.0-rc.2"
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.1" }
23-
tauri-plugin-fs = { path = "../../../plugins/fs", version = "2.0.0-rc.0", features = [
23+
tauri-plugin-fs = { path = "../../../plugins/fs", version = "2.0.0-rc.1", features = [
2424
"watch",
2525
] }
2626
tauri-plugin-clipboard-manager = { path = "../../../plugins/clipboard-manager", version = "2.0.0-rc.2" }
27-
tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "2.0.0-rc.2" }
27+
tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "2.0.0-rc.3" }
2828
tauri-plugin-http = { path = "../../../plugins/http", features = [
2929
"multipart",
30-
], version = "2.0.0-rc.0" }
30+
], version = "2.0.0-rc.1" }
3131
tauri-plugin-notification = { path = "../../../plugins/notification", version = "2.0.0-rc.2", features = [
3232
"windows7-compat",
3333
] }
@@ -50,7 +50,7 @@ features = [
5050

5151
[target."cfg(any(target_os = \"macos\", windows, target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies]
5252
tauri-plugin-cli = { path = "../../../plugins/cli", version = "2.0.0-rc.0" }
53-
tauri-plugin-global-shortcut = { path = "../../../plugins/global-shortcut", version = "2.0.0-rc.1" }
53+
tauri-plugin-global-shortcut = { path = "../../../plugins/global-shortcut", version = "2.0.0-rc.2" }
5454
tauri-plugin-updater = { path = "../../../plugins/updater", version = "2.0.0-rc.1" }
5555

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

plugins/dialog/CHANGELOG.md

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

3+
## \[2.0.0-rc.1]
4+
5+
- [`448846b8`](https://github.com/tauri-apps/plugins-workspace/commit/448846b834d23df6e7c5dc66c5dd9aa0cb01846d) ([#1658](https://github.com/tauri-apps/plugins-workspace/pull/1658) by [@mikoto2000](https://github.com/tauri-apps/plugins-workspace/../../mikoto2000)) The `open` function now returns a string representing either the file path or URI instead of an object.
6+
To read the file data, use the `fs` APIs.
7+
38
## \[2.0.0-rc.2]
49

510
- [`b9147758`](https://github.com/tauri-apps/plugins-workspace/commit/b914775898c2bee7ceb20bd17ee595005cd17a64) ([#1679](https://github.com/tauri-apps/plugins-workspace/pull/1679) by [@lucasfernog](https://github.com/tauri-apps/plugins-workspace/../../lucasfernog)) Explicitly set a minimum macOS version for the Swift package.
@@ -197,3 +202,17 @@
197202
pull/371)) First v2 alpha release!
198203
lpha release!
199204
pull/371)) First v2 alpha release!
205+
v2 alpha release!
206+
lpha release!
207+
pull/371)) First v2 alpha release!
208+
lpha release!
209+
pull/371)) First v2 alpha release!
210+
lpha release!
211+
pull/371)) First v2 alpha release!
212+
lpha release!
213+
lpha release!
214+
pull/371)) First v2 alpha release!
215+
lpha release!
216+
pull/371)) First v2 alpha release!
217+
lpha release!
218+
pull/371)) First v2 alpha release!

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.2"
3+
version = "2.0.0-rc.3"
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 }
@@ -28,7 +28,7 @@ log = { workspace = true }
2828
thiserror = { workspace = true }
2929
dunce = { workspace = true }
3030
url = { workspace = true }
31-
tauri-plugin-fs = { path = "../fs", version = "2.0.0-rc.0" }
31+
tauri-plugin-fs = { path = "../fs", version = "2.0.0-rc.1" }
3232

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

plugins/dialog/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-dialog",
3-
"version": "2.0.0-rc.0",
3+
"version": "2.0.0-rc.1",
44
"license": "MIT or APACHE-2.0",
55
"authors": [
66
"Tauri Programme within The Commons Conservancy"

plugins/fs/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
## \[2.0.0-rc.1]
44

5+
### enhance
6+
7+
- [`0d5e7e28`](https://github.com/tauri-apps/plugins-workspace/commit/0d5e7e2892bef1d35a22280d1eef68b6958fb28e) ([#1696](https://github.com/tauri-apps/plugins-workspace/pull/1696) by [@lucasfernog](https://github.com/tauri-apps/plugins-workspace/../../lucasfernog)) The `scope-*-recursive` permissions now also allow reading the contents of the directory.
8+
9+
### feat
10+
11+
- [`448846b8`](https://github.com/tauri-apps/plugins-workspace/commit/448846b834d23df6e7c5dc66c5dd9aa0cb01846d) ([#1658](https://github.com/tauri-apps/plugins-workspace/pull/1658) by [@mikoto2000](https://github.com/tauri-apps/plugins-workspace/../../mikoto2000)) Resolve `content://` path URIs on Android.
12+
13+
## \[2.0.0-rc.1]
14+
515
- [`5f689902`](https://github.com/tauri-apps/plugins-workspace/commit/5f68990297f2cefac4220649a469adb7fa94fe1b) ([#1645](https://github.com/tauri-apps/plugins-workspace/pull/1645) by [@lucasfernog](https://github.com/tauri-apps/plugins-workspace/../../lucasfernog)) Update documentation.
616

717
## \[2.0.0-rc.0]

0 commit comments

Comments
 (0)