From dc5721ac134395bc00dbb7c0c06ff651521c0353 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 15 Sep 2024 18:37:58 -0300 Subject: [PATCH] Publish New Versions (v2) (#1788) Co-authored-by: lucasfernog --- .changes/pre.json | 2 ++ Cargo.lock | 4 ++-- plugins/upload/CHANGELOG.md | 6 ++++++ plugins/upload/Cargo.toml | 2 +- plugins/window-state/CHANGELOG.md | 4 ++++ plugins/window-state/Cargo.toml | 2 +- 6 files changed, 16 insertions(+), 4 deletions(-) diff --git a/.changes/pre.json b/.changes/pre.json index ee15b268..03b4cf34 100644 --- a/.changes/pre.json +++ b/.changes/pre.json @@ -22,6 +22,8 @@ ".changes/fix-linux-updater-permission-error.md", ".changes/fix-restore-minimized-window-position.md", ".changes/fix-restore-minimized-window-state.md", + ".changes/fix-restore-window-state-deadlock.md", + ".changes/fix-upload-handle-non-success-download.md", ".changes/fs-dialog-file-path-methods.md", ".changes/fs-dialog-file-path-traits.md", ".changes/fs-dialog-non-exhaustive-error.md", diff --git a/Cargo.lock b/Cargo.lock index 903454e0..d856a7f6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6858,7 +6858,7 @@ dependencies = [ [[package]] name = "tauri-plugin-upload" -version = "2.0.0-rc.1" +version = "2.0.0-rc.2" dependencies = [ "futures-util", "log", @@ -6893,7 +6893,7 @@ dependencies = [ [[package]] name = "tauri-plugin-window-state" -version = "2.0.0-rc.4" +version = "2.0.0-rc.5" dependencies = [ "bitflags 2.6.0", "log", diff --git a/plugins/upload/CHANGELOG.md b/plugins/upload/CHANGELOG.md index ecaeee23..5dec7a7e 100644 --- a/plugins/upload/CHANGELOG.md +++ b/plugins/upload/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.0.0-rc.2] + +### bug + +- [`1d9741b5`](https://github.com/tauri-apps/plugins-workspace/commit/1d9741b52bb242d32b2ffd46fb4343a501cbd54b) ([#1783](https://github.com/tauri-apps/plugins-workspace/pull/1783) by [@fxsalazar](https://github.com/tauri-apps/plugins-workspace/../../fxsalazar)) fix download content to file when unsuccessful response + ## \[2.0.0-rc.1] - [`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 diff --git a/plugins/upload/Cargo.toml b/plugins/upload/Cargo.toml index c43487a9..05c682a0 100644 --- a/plugins/upload/Cargo.toml +++ b/plugins/upload/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-upload" -version = "2.0.0-rc.1" +version = "2.0.0-rc.2" description = "Upload files from disk to a remote server over HTTP." authors = { workspace = true } license = { workspace = true } diff --git a/plugins/window-state/CHANGELOG.md b/plugins/window-state/CHANGELOG.md index e3a775da..9ffe3bb0 100644 --- a/plugins/window-state/CHANGELOG.md +++ b/plugins/window-state/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[2.0.0-rc.5] + +- [`7a37355e`](https://github.com/tauri-apps/plugins-workspace/commit/7a37355e177772cbddf24397d5a23280e00558af) ([#1787](https://github.com/tauri-apps/plugins-workspace/pull/1787) by [@Legend-Master](https://github.com/tauri-apps/plugins-workspace/../../Legend-Master)) Fix deadlock when trying to restore window states on initial load + ## \[2.0.0-rc.4] - [`204e5aac`](https://github.com/tauri-apps/plugins-workspace/commit/204e5aacad7e8f99a9a08f4a45cfed83643c1cc0) ([#1743](https://github.com/tauri-apps/plugins-workspace/pull/1743)) Fix can't restore a minimized window's size and position properly diff --git a/plugins/window-state/Cargo.toml b/plugins/window-state/Cargo.toml index 0856665d..974ef817 100644 --- a/plugins/window-state/Cargo.toml +++ b/plugins/window-state/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin-window-state" -version = "2.0.0-rc.4" +version = "2.0.0-rc.5" description = "Save window positions and sizes and restore them when the app is reopened." authors = { workspace = true } license = { workspace = true }