Skip to content

Commit 21b27fa

Browse files
authored
publish new versions
1 parent cf4d7d4 commit 21b27fa

File tree

21 files changed

+95
-28
lines changed

21 files changed

+95
-28
lines changed

.changes/pre.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,19 @@
55
".changes/consolidate-permission-state.md",
66
".changes/dialog-file-response-non-exhaustive.md",
77
".changes/dialog-return-path.md",
8+
".changes/fix-deep-link-config.md",
9+
".changes/fix-fs-write-file-android.md",
810
".changes/fix-http-plugin-abort.md",
11+
".changes/fix-ios-file-dialog-default-mode.md",
912
".changes/fix-linux-updater-permission-error.md",
13+
".changes/fix-restore-minimized-window-position.md",
1014
".changes/fs-scope-recursive-allow-read-dir.md",
15+
".changes/fs-windows-path.md",
1116
".changes/geolocation-release.md",
1217
".changes/global-shortcut-0.6.md",
1318
".changes/haptics-release.md",
1419
".changes/iife-varname-spacing.md",
20+
".changes/ios-dialog-save.md",
1521
".changes/notification-permission-type-change.md",
1622
".changes/rc.md",
1723
".changes/remove-target-sdk.md",
@@ -23,6 +29,7 @@
2329
".changes/swift-build-older-versions.md",
2430
".changes/tauri-rc-8.md",
2531
".changes/update-fs-api-docs.md",
26-
".changes/update-tauri-rc-3.md"
32+
".changes/update-tauri-rc-3.md",
33+
".changes/updater-js-headers-download.md"
2734
]
2835
}

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.3]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
39
## \[2.0.0-rc.2]
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.2",
4+
"version": "2.0.0-rc.3",
55
"type": "module",
66
"scripts": {
77
"dev": "vite --clearScreen false",
@@ -24,7 +24,7 @@
2424
"@tauri-apps/plugin-process": "2.0.0-rc.1",
2525
"@tauri-apps/plugin-shell": "2.0.0-rc.1",
2626
"@tauri-apps/plugin-store": "2.0.0-rc.1",
27-
"@tauri-apps/plugin-updater": "2.0.0-rc.1",
27+
"@tauri-apps/plugin-updater": "2.0.0-rc.2",
2828
"@zerodevx/svelte-json-view": "1.0.10"
2929
},
3030
"devDependencies": {

examples/api/src-tauri/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.3]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
- Upgraded to `[email protected]`
9+
- Upgraded to `[email protected]`
10+
311
## \[2.0.0-rc.2]
412

513
### Dependencies

examples/api/src-tauri/Cargo.toml

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

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.3]
4+
5+
- [`4654591d`](https://github.com/tauri-apps/plugins-workspace/commit/4654591d820403d6fa1a007fd55bb0d85947a6cc) ([#1732](https://github.com/tauri-apps/plugins-workspace/pull/1732) by [@lucasfernog](https://github.com/tauri-apps/plugins-workspace/../../lucasfernog)) Allow empty configuration values.
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/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.2"
3+
version = "2.0.0-rc.3"
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: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## \[2.0.0-rc.4]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
9+
### breaking
10+
11+
- [`0cb99bda`](https://github.com/tauri-apps/plugins-workspace/commit/0cb99bdaf11b5a9bb66b80bdf40b085d87c3066d) ([#1706](https://github.com/tauri-apps/plugins-workspace/pull/1706) by [@lucasfernog](https://github.com/tauri-apps/plugins-workspace/../../lucasfernog)) If no filters are specified, the file picker dialog now defaults to a file selection instead of photos.
12+
13+
### feat
14+
15+
- [`feb1e93f`](https://github.com/tauri-apps/plugins-workspace/commit/feb1e93fcb9a913c002daa29e3b709f24b97c664) ([#1707](https://github.com/tauri-apps/plugins-workspace/pull/1707) by [@lucasfernog](https://github.com/tauri-apps/plugins-workspace/../../lucasfernog)) Implement `save` API on iOS.
16+
317
## \[2.0.0-rc.1]
418

519
- [`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.
@@ -203,7 +217,7 @@
203217
pull/371)) First v2 alpha release!
204218
lpha release!
205219
pull/371)) First v2 alpha release!
206-
v2 alpha release!
220+
v2 alpha release!
207221
lpha release!
208222
pull/371)) First v2 alpha release!
209223
lpha 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.3"
3+
version = "2.0.0-rc.4"
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.1" }
31+
tauri-plugin-fs = { path = "../fs", version = "2.0.0-rc.2" }
3232

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

0 commit comments

Comments
 (0)