Skip to content

Commit 6568b5e

Browse files
github-actions[bot]mrquantumoff
authored andcommitted
publish new versions (tauri-apps#3203)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent f1d47d4 commit 6568b5e

14 files changed

Lines changed: 50 additions & 38 deletions

File tree

.changes/fix-http-origin.md

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

.changes/support-file-access-mode-ios.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 `http-js@2.5.6`
8+
- Upgraded to `dialog-js@2.6.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,12 +15,12 @@
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",
2222
"@tauri-apps/plugin-haptics": "^2.2.0",
23-
"@tauri-apps/plugin-http": "^2.5.5",
23+
"@tauri-apps/plugin-http": "^2.5.6",
2424
"@tauri-apps/plugin-nfc": "^2.3.4",
2525
"@tauri-apps/plugin-notification": "^2.3.3",
2626
"@tauri-apps/plugin-opener": "^2.5.3",

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 `http@2.5.6`
8+
- Upgraded to `dialog@2.6.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,11 +25,11 @@ 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",
32-
], version = "2.5.5" }
32+
], version = "2.5.6" }
3333
tauri-plugin-notification = { path = "../../../plugins/notification", version = "2.3.3", features = [
3434
"windows7-compat",
3535
] }

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) by [@onehumandev](https://github.com/tauri-apps/plugins-workspace/../../onehumandev)) 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 }

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.5.0",
3+
"version": "2.6.0",
44
"license": "MIT OR Apache-2.0",
55
"authors": [
66
"Tauri Programme within The Commons Conservancy"

0 commit comments

Comments
 (0)