Skip to content

Commit 5b59edf

Browse files
publish new versions
1 parent d7a0bb3 commit 5b59edf

15 files changed

Lines changed: 51 additions & 44 deletions

.changes/support-file-access-mode-ios.md

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

.changes/updater-allow-invalid-tls.md

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

.changes/updater-new-bundle-support.md

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

Cargo.lock

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

3+
## \[2.0.36]
4+
5+
### Dependencies
6+
7+
- Upgraded to `dialog-js@2.6.0`
8+
- Upgraded to `updater-js@2.10.0`
9+
310
## \[2.0.35]
411

512
### Dependencies

examples/api/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "api",
33
"private": true,
4-
"version": "2.0.35",
4+
"version": "2.0.36",
55
"type": "module",
66
"scripts": {
77
"dev": "vite --clearScreen false",
@@ -15,7 +15,7 @@
1515
"@tauri-apps/plugin-biometric": "^2.3.2",
1616
"@tauri-apps/plugin-cli": "^2.4.1",
1717
"@tauri-apps/plugin-clipboard-manager": "^2.3.2",
18-
"@tauri-apps/plugin-dialog": "^2.5.0",
18+
"@tauri-apps/plugin-dialog": "^2.6.0",
1919
"@tauri-apps/plugin-fs": "^2.4.5",
2020
"@tauri-apps/plugin-geolocation": "^2.2.0",
2121
"@tauri-apps/plugin-global-shortcut": "^2.3.1",
@@ -28,7 +28,7 @@
2828
"@tauri-apps/plugin-process": "^2.3.1",
2929
"@tauri-apps/plugin-shell": "^2.3.4",
3030
"@tauri-apps/plugin-store": "^2.4.2",
31-
"@tauri-apps/plugin-updater": "^2.9.0",
31+
"@tauri-apps/plugin-updater": "^2.10.0",
3232
"@tauri-apps/plugin-upload": "^2.3.0",
3333
"@zerodevx/svelte-json-view": "1.0.11"
3434
},

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.40]
4+
5+
### Dependencies
6+
7+
- Upgraded to `dialog@2.6.0`
8+
- Upgraded to `updater@2.10.0`
9+
310
## \[2.0.39]
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.39"
4+
version = "2.0.40"
55
description = "An example Tauri Application showcasing the api"
66
edition = "2021"
77
rust-version = { workspace = true }
@@ -25,7 +25,7 @@ tauri-plugin-fs = { path = "../../../plugins/fs", version = "2.4.5", features =
2525
"watch",
2626
] }
2727
tauri-plugin-clipboard-manager = { path = "../../../plugins/clipboard-manager", version = "2.3.2" }
28-
tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "2.5.0" }
28+
tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "2.6.0" }
2929
tauri-plugin-http = { path = "../../../plugins/http", features = [
3030
"multipart",
3131
"cookies",
@@ -57,7 +57,7 @@ features = [
5757
[target."cfg(any(target_os = \"macos\", windows, target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies]
5858
tauri-plugin-cli = { path = "../../../plugins/cli", version = "2.4.1" }
5959
tauri-plugin-global-shortcut = { path = "../../../plugins/global-shortcut", version = "2.3.1" }
60-
tauri-plugin-updater = { path = "../../../plugins/updater", version = "2.9.0" }
60+
tauri-plugin-updater = { path = "../../../plugins/updater", version = "2.10.0" }
6161
tauri-plugin-window-state = { path = "../../../plugins/window-state", version = "2.2.0" }
6262

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

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.6.0]
4+
5+
- [`d7a0bb32`](https://github.com/tauri-apps/plugins-workspace/commit/d7a0bb325dad919d6cc132eb3898c33540de77c4) ([#3136](https://github.com/tauri-apps/plugins-workspace/pull/3136)) Add `fileAccessMode` option to file picker.
6+
37
## \[2.5.0]
48

59
- [`dff6fa98`](https://github.com/tauri-apps/plugins-workspace/commit/dff6fa986a9a05ba98b6ca660fea78ae97251fc2) ([#3034](https://github.com/tauri-apps/plugins-workspace/pull/3034) by [@onehumandev](https://github.com/tauri-apps/plugins-workspace/../../onehumandev)) Add `pickerMode` option to file picker (currently only used on iOS)

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.5.0"
3+
version = "2.6.0"
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 }

0 commit comments

Comments
 (0)