From a144e929934fa7963b254b166e3d1e09740aeee6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 28 Mar 2022 22:52:37 -0300 Subject: [PATCH] Apply Version Updates From Current Changes (#3798) Co-authored-by: lucasfernog --- .changes/pre.json | 2 ++ core/tauri-runtime-wry/CHANGELOG.md | 5 +++++ core/tauri-runtime-wry/Cargo.toml | 2 +- core/tauri/CHANGELOG.md | 7 +++++++ core/tauri/Cargo.toml | 4 ++-- tooling/cli/metadata.json | 2 +- 6 files changed, 18 insertions(+), 4 deletions(-) diff --git a/.changes/pre.json b/.changes/pre.json index 5edffd2e3..60061b383 100644 --- a/.changes/pre.json +++ b/.changes/pre.json @@ -121,6 +121,7 @@ ".changes/fix-inner-size.md", ".changes/fix-linux-resource-path.md", ".changes/fix-menu-ids.md", + ".changes/fix-on-window-event-type.md", ".changes/fix-once-fnonce.md", ".changes/fix-out-dir-detection.md", ".changes/fix-path-resolution-node_modules.md", @@ -140,6 +141,7 @@ ".changes/fix-window-specific-event-system.md", ".changes/fix-windows-resources.md", ".changes/fix-windows-sidecar.md", + ".changes/fix-wry-window-destroyed-event.md", ".changes/fix-yarn-pnp.md", ".changes/fixed-webview2-runtime.md", ".changes/force-updater-public-key.md", diff --git a/core/tauri-runtime-wry/CHANGELOG.md b/core/tauri-runtime-wry/CHANGELOG.md index 7dd5a9d1d..f2b8193cf 100644 --- a/core/tauri-runtime-wry/CHANGELOG.md +++ b/core/tauri-runtime-wry/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## \[0.3.5] + +- Fixes `WindowEvent::Destroyed` not firing. + - [169b5035](https://www.github.com/tauri-apps/tauri/commit/169b5035a93e3f33a420d4b2b0f8943e6404e07f) fix(core): actually fire `WindowEvent::Destroyed` ([#3797](https://www.github.com/tauri-apps/tauri/pull/3797)) on 2022-03-28 + ## \[0.3.4] - Added `close_devtools` and `is_devtools_open` APIs to the `Dispatch` trait. diff --git a/core/tauri-runtime-wry/Cargo.toml b/core/tauri-runtime-wry/Cargo.toml index 2f9d3b234..e13dd7c02 100644 --- a/core/tauri-runtime-wry/Cargo.toml +++ b/core/tauri-runtime-wry/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-runtime-wry" -version = "0.3.4" +version = "0.3.5" authors = [ "Tauri Programme within The Commons Conservancy" ] categories = [ "gui", "web-programming" ] license = "Apache-2.0 OR MIT" diff --git a/core/tauri/CHANGELOG.md b/core/tauri/CHANGELOG.md index 68bee1019..d160b161b 100644 --- a/core/tauri/CHANGELOG.md +++ b/core/tauri/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## \[1.0.0-rc.6] + +- Fixes the `WindowEvent` type used on `Window::on_window_event`. + - [06aa87b6](https://www.github.com/tauri-apps/tauri/commit/06aa87b65f4608ded0dc312d526e83065618a1c8) fix(core): `WindowEvent` type used on `Window::on_window_event` ([#3796](https://www.github.com/tauri-apps/tauri/pull/3796)) on 2022-03-28 +- Fixes `WindowEvent::Destroyed` not firing. + - [169b5035](https://www.github.com/tauri-apps/tauri/commit/169b5035a93e3f33a420d4b2b0f8943e6404e07f) fix(core): actually fire `WindowEvent::Destroyed` ([#3797](https://www.github.com/tauri-apps/tauri/pull/3797)) on 2022-03-28 + ## \[1.0.0-rc.5] - Added `updater_target` method to the `Builder` struct. diff --git a/core/tauri/Cargo.toml b/core/tauri/Cargo.toml index 1a74ab493..741e9fae5 100644 --- a/core/tauri/Cargo.toml +++ b/core/tauri/Cargo.toml @@ -16,7 +16,7 @@ license = "Apache-2.0 OR MIT" name = "tauri" readme = "README.md" repository = "https://github.com/tauri-apps/tauri" -version = "1.0.0-rc.5" +version = "1.0.0-rc.6" [package.metadata.docs.rs] no-default-features = true @@ -54,7 +54,7 @@ once_cell = "1.10" tauri-runtime = { version = "0.3.4", path = "../tauri-runtime" } tauri-macros = { version = "1.0.0-rc.4", path = "../tauri-macros" } tauri-utils = { version = "1.0.0-rc.4", path = "../tauri-utils" } -tauri-runtime-wry = { version = "0.3.4", path = "../tauri-runtime-wry", optional = true } +tauri-runtime-wry = { version = "0.3.5", path = "../tauri-runtime-wry", optional = true } rand = "0.8" semver = "1.0" serde_repr = "0.1" diff --git a/tooling/cli/metadata.json b/tooling/cli/metadata.json index e6862dc3b..fe781d459 100644 --- a/tooling/cli/metadata.json +++ b/tooling/cli/metadata.json @@ -3,6 +3,6 @@ "version": "1.0.0-rc.7", "node": ">= 12.13.0" }, - "tauri": "1.0.0-rc.5", + "tauri": "1.0.0-rc.6", "tauri-build": "1.0.0-rc.5" }