Skip to content

Commit 66abc07

Browse files
github-actions[bot]amrbashirFabianLars
authored andcommitted
Publish New Versions (v2) (tauri-apps#1736)
Co-authored-by: amrbashir <[email protected]> Co-authored-by: Fabian-Lars <[email protected]>
1 parent 255a4f3 commit 66abc07

File tree

14 files changed

+75
-19
lines changed

14 files changed

+75
-19
lines changed

.changes/pre.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@
1111
".changes/fix-ios-file-dialog-default-mode.md",
1212
".changes/fix-linux-updater-permission-error.md",
1313
".changes/fix-restore-minimized-window-position.md",
14+
".changes/fs-dialog-file-path-methods.md",
15+
".changes/fs-dialog-file-path-traits.md",
16+
".changes/fs-dialog-non-exhaustive-error.md",
17+
".changes/fs-dialog-safe-file-path.md",
1418
".changes/fs-scope-recursive-allow-read-dir.md",
1519
".changes/fs-windows-path.md",
1620
".changes/geolocation-release.md",
@@ -30,6 +34,7 @@
3034
".changes/tauri-rc-8.md",
3135
".changes/update-fs-api-docs.md",
3236
".changes/update-tauri-rc-3.md",
37+
".changes/updater-js-headers-download-crate.md",
3338
".changes/updater-js-headers-download.md"
3439
]
3540
}

Cargo.lock

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

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.4]
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.3]
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.3"
4+
version = "2.0.0-rc.4"
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.2", features = [
23+
tauri-plugin-fs = { path = "../../../plugins/fs", version = "2.0.0-rc.3", 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.4" }
27+
tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "2.0.0-rc.5" }
2828
tauri-plugin-http = { path = "../../../plugins/http", features = [
2929
"multipart",
30-
], version = "2.0.0-rc.2" }
30+
], version = "2.0.0-rc.3" }
3131
tauri-plugin-notification = { path = "../../../plugins/notification", version = "2.0.0-rc.3", features = [
3232
"windows7-compat",
3333
] }
@@ -52,7 +52,7 @@ features = [
5252
[target."cfg(any(target_os = \"macos\", windows, target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies]
5353
tauri-plugin-cli = { path = "../../../plugins/cli", version = "2.0.0-rc.1" }
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.2" }
55+
tauri-plugin-updater = { path = "../../../plugins/updater", version = "2.0.0-rc.3" }
5656

5757
[target."cfg(any(target_os = \"android\", target_os = \"ios\"))".dependencies]
5858
tauri-plugin-barcode-scanner = { path = "../../../plugins/barcode-scanner/", version = "2.0.0-rc.3" }

plugins/dialog/CHANGELOG.md

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

3+
## \[2.0.0-rc.5]
4+
5+
- [`a2fe5551`](https://github.com/tauri-apps/plugins-workspace/commit/a2fe55512f908dd11c814ce021d164f01677572a) ([#1727](https://github.com/tauri-apps/plugins-workspace/pull/1727) by [@amrbashir](https://github.com/tauri-apps/plugins-workspace/../../amrbashir)) Add utility methods on `FilePath` and `SafeFilePath` enums which are:
6+
7+
- `path`
8+
- `simplified`
9+
- `into_path`
10+
- [`a2fe5551`](https://github.com/tauri-apps/plugins-workspace/commit/a2fe55512f908dd11c814ce021d164f01677572a) ([#1727](https://github.com/tauri-apps/plugins-workspace/pull/1727) by [@amrbashir](https://github.com/tauri-apps/plugins-workspace/../../amrbashir)) Implement `Serialize`, `Deserialize`, `From`, `TryFrom` and `FromStr` traits for `FilePath` and `SafeFilePath` enums.
11+
- [`a2fe5551`](https://github.com/tauri-apps/plugins-workspace/commit/a2fe55512f908dd11c814ce021d164f01677572a) ([#1727](https://github.com/tauri-apps/plugins-workspace/pull/1727) by [@amrbashir](https://github.com/tauri-apps/plugins-workspace/../../amrbashir)) Mark `Error` enum as `#[non_exhuastive]`.
12+
- [`a2fe5551`](https://github.com/tauri-apps/plugins-workspace/commit/a2fe55512f908dd11c814ce021d164f01677572a) ([#1727](https://github.com/tauri-apps/plugins-workspace/pull/1727) by [@amrbashir](https://github.com/tauri-apps/plugins-workspace/../../amrbashir)) Add `SafeFilePath` enum.
13+
14+
### Dependencies
15+
16+
- Upgraded to `[email protected]`
17+
318
## \[2.0.0-rc.4]
419

520
### Dependencies

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.4"
3+
version = "2.0.0-rc.5"
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 }
@@ -27,7 +27,7 @@ tauri = { workspace = true }
2727
log = { workspace = true }
2828
thiserror = { workspace = true }
2929
url = { workspace = true }
30-
tauri-plugin-fs = { path = "../fs", version = "2.0.0-rc.2" }
30+
tauri-plugin-fs = { path = "../fs", version = "2.0.0-rc.3" }
3131

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

plugins/fs/CHANGELOG.md

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

3+
## \[2.0.0-rc.3]
4+
5+
- [`a2fe5551`](https://github.com/tauri-apps/plugins-workspace/commit/a2fe55512f908dd11c814ce021d164f01677572a) ([#1727](https://github.com/tauri-apps/plugins-workspace/pull/1727) by [@amrbashir](https://github.com/tauri-apps/plugins-workspace/../../amrbashir)) Add utility methods on `FilePath` and `SafeFilePath` enums which are:
6+
7+
- `path`
8+
- `simplified`
9+
- `into_path`
10+
- [`a2fe5551`](https://github.com/tauri-apps/plugins-workspace/commit/a2fe55512f908dd11c814ce021d164f01677572a) ([#1727](https://github.com/tauri-apps/plugins-workspace/pull/1727) by [@amrbashir](https://github.com/tauri-apps/plugins-workspace/../../amrbashir)) Implement `Serialize`, `Deserialize`, `From`, `TryFrom` and `FromStr` traits for `FilePath` and `SafeFilePath` enums.
11+
- [`a2fe5551`](https://github.com/tauri-apps/plugins-workspace/commit/a2fe55512f908dd11c814ce021d164f01677572a) ([#1727](https://github.com/tauri-apps/plugins-workspace/pull/1727) by [@amrbashir](https://github.com/tauri-apps/plugins-workspace/../../amrbashir)) Mark `Error` enum as `#[non_exhuastive]`.
12+
- [`a2fe5551`](https://github.com/tauri-apps/plugins-workspace/commit/a2fe55512f908dd11c814ce021d164f01677572a) ([#1727](https://github.com/tauri-apps/plugins-workspace/pull/1727) by [@amrbashir](https://github.com/tauri-apps/plugins-workspace/../../amrbashir)) Add `SafeFilePath` enum.
13+
314
## \[2.0.0-rc.2]
415

516
- [`f7280c88`](https://github.com/tauri-apps/plugins-workspace/commit/f7280c88309cdf1f2330574fec31e26e01e9cdbd) ([#1710](https://github.com/tauri-apps/plugins-workspace/pull/1710) by [@Legend-Master](https://github.com/tauri-apps/plugins-workspace/../../Legend-Master)) Fix can't use Windows paths like `C:/Users/UserName/file.txt`

plugins/fs/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-fs"
3-
version = "2.0.0-rc.2"
3+
version = "2.0.0-rc.3"
44
description = "Access the file system."
55
authors = { workspace = true }
66
license = { workspace = true }

plugins/http/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

plugins/http/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-http"
3-
version = "2.0.0-rc.2"
3+
version = "2.0.0-rc.3"
44
description = "Access an HTTP client written in Rust."
55
edition = { workspace = true }
66
authors = { workspace = true }
@@ -27,7 +27,7 @@ serde_json = { workspace = true }
2727
tauri = { workspace = true }
2828
thiserror = { workspace = true }
2929
tokio = { version = "1", features = ["sync", "macros"] }
30-
tauri-plugin-fs = { path = "../fs", version = "2.0.0-rc.2" }
30+
tauri-plugin-fs = { path = "../fs", version = "2.0.0-rc.3" }
3131
urlpattern = "0.3"
3232
regex = "1"
3333
http = "1"

0 commit comments

Comments
 (0)