From efc67fbf85dfad7776956ca9ba99e24b1ae02720 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 16 Oct 2025 07:47:15 -0300 Subject: [PATCH] publish new versions (#1149) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .changes/android-destroy.md | 5 ----- CHANGELOG.md | 4 ++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 4 files changed, 6 insertions(+), 7 deletions(-) delete mode 100644 .changes/android-destroy.md diff --git a/.changes/android-destroy.md b/.changes/android-destroy.md deleted file mode 100644 index 9e67df59..00000000 --- a/.changes/android-destroy.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tao": patch ---- - -Trigger `WindowEvent::Destroyed` when the Android activity is destroyed. In this case, the app should either exit by setting the control flow to `ControlFlow::ExitWithCode` or NOT call the create() external function when the activity is recreated and `onCreate` is called, handling how to recreate the app window via a separate hook that can leverage the existing tao event loop. diff --git a/CHANGELOG.md b/CHANGELOG.md index 3bfbd873..220d5819 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[0.34.4] + +- [`25f2c58a`](https://github.com/tauri-apps/tao/commit/25f2c58aca96215113d1a4feae5c854e3349cf06) ([#1148](https://github.com/tauri-apps/tao/pull/1148) by [@lucasfernog](https://github.com/tauri-apps/tao/../../lucasfernog)) Trigger `WindowEvent::Destroyed` when the Android activity is destroyed. In this case, the app should either exit by setting the control flow to `ControlFlow::ExitWithCode` or NOT call the create() external function when the activity is recreated and `onCreate` is called, handling how to recreate the app window via a separate hook that can leverage the existing tao event loop. + ## \[0.34.3] - [`0defcd01`](https://github.com/tauri-apps/tao/commit/0defcd015c615b95f42ce3437b06174816f76602) ([#1132](https://github.com/tauri-apps/tao/pull/1132) by [@Legend-Master](https://github.com/tauri-apps/tao/../../Legend-Master)) Exclude audit PDF file from the crate published to crates.io diff --git a/Cargo.lock b/Cargo.lock index f72ae429..a85cac25 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2225,7 +2225,7 @@ dependencies = [ [[package]] name = "tao" -version = "0.34.3" +version = "0.34.4" dependencies = [ "bitflags 2.8.0", "block2 0.6.0", diff --git a/Cargo.toml b/Cargo.toml index 5b0f5d2c..1c1608f0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tao" -version = "0.34.3" +version = "0.34.4" description = "Cross-platform window manager library." authors = [ "Tauri Programme within The Commons Conservancy",