From b1dacd539a59d5fd358fc1ed4a2b4632d43f44da 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:36:42 -0300 Subject: [PATCH] Apply Version Updates From Current Changes (#11014) Co-authored-by: lucasfernog --- .changes/pre.json | 2 ++ Cargo.lock | 4 ++-- crates/tauri-cli/metadata-v2.json | 2 +- crates/tauri-runtime-wry/CHANGELOG.md | 10 ++++++++++ crates/tauri-runtime-wry/Cargo.toml | 2 +- crates/tauri/CHANGELOG.md | 14 ++++++++++++++ crates/tauri/Cargo.toml | 4 ++-- 7 files changed, 32 insertions(+), 6 deletions(-) diff --git a/.changes/pre.json b/.changes/pre.json index bcf029c2a8d..2919cbe43b5 100644 --- a/.changes/pre.json +++ b/.changes/pre.json @@ -23,6 +23,7 @@ ".changes/change-pr-10619.md", ".changes/change-pr-10676.md", ".changes/change-pr-10718.md", + ".changes/change-type-of-macos-webview.md", ".changes/changelog-path-deb.md", ".changes/check-android-lib-symbols.md", ".changes/cli-add-no-fmt.md", @@ -134,6 +135,7 @@ ".changes/update-tao-wry.md", ".changes/update-trayicon-infer-urlpattern-image.md", ".changes/update-wry.md", + ".changes/use-objc2.md", ".changes/utils-autogenerated-command-return-list.md", ".changes/utils-fix-plugin-reference.md", ".changes/v1-migrate-updater.md", diff --git a/Cargo.lock b/Cargo.lock index 56daef987bc..bf4eefd5275 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7284,7 +7284,7 @@ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1" [[package]] name = "tauri" -version = "2.0.0-rc.12" +version = "2.0.0-rc.13" dependencies = [ "anyhow", "bytes", @@ -7674,7 +7674,7 @@ dependencies = [ [[package]] name = "tauri-runtime-wry" -version = "2.0.0-rc.11" +version = "2.0.0-rc.12" dependencies = [ "gtk", "http 1.1.0", diff --git a/crates/tauri-cli/metadata-v2.json b/crates/tauri-cli/metadata-v2.json index d5b1cca68ca..0725efcc034 100644 --- a/crates/tauri-cli/metadata-v2.json +++ b/crates/tauri-cli/metadata-v2.json @@ -3,7 +3,7 @@ "version": "2.0.0-rc.15", "node": ">= 10.0.0" }, - "tauri": "2.0.0-rc.12", + "tauri": "2.0.0-rc.13", "tauri-build": "2.0.0-rc.11", "tauri-plugin": "2.0.0-rc.11" } diff --git a/crates/tauri-runtime-wry/CHANGELOG.md b/crates/tauri-runtime-wry/CHANGELOG.md index 6ebba860df7..91aa62b9277 100644 --- a/crates/tauri-runtime-wry/CHANGELOG.md +++ b/crates/tauri-runtime-wry/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## \[2.0.0-rc.12] + +### Enhancements + +- [`bc4804d48`](https://www.github.com/tauri-apps/tauri/commit/bc4804d4841efefd57fd1f3e147550a3340e2b31) ([#10924](https://www.github.com/tauri-apps/tauri/pull/10924) by [@madsmtm](https://www.github.com/tauri-apps/tauri/../../madsmtm)) Use `objc2` internally and in examples, leading to better memory safety. + +### Breaking Changes + +- [`bc4804d48`](https://www.github.com/tauri-apps/tauri/commit/bc4804d4841efefd57fd1f3e147550a3340e2b31) ([#10924](https://www.github.com/tauri-apps/tauri/pull/10924) by [@madsmtm](https://www.github.com/tauri-apps/tauri/../../madsmtm)) Change the pointer type of `PlatformWebview`'s `inner`, `controller`, `ns_window` and `view_controller` to `c_void`, to avoid publically depending on `objc`. + ## \[2.0.0-rc.11] ### Dependencies diff --git a/crates/tauri-runtime-wry/Cargo.toml b/crates/tauri-runtime-wry/Cargo.toml index 53209e91f7a..2e13c597a28 100644 --- a/crates/tauri-runtime-wry/Cargo.toml +++ b/crates/tauri-runtime-wry/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-runtime-wry" -version = "2.0.0-rc.11" +version = "2.0.0-rc.12" description = "Wry bindings to the Tauri runtime" exclude = ["CHANGELOG.md", "/target"] readme = "README.md" diff --git a/crates/tauri/CHANGELOG.md b/crates/tauri/CHANGELOG.md index 46ff9edaf77..8487bdb9eb2 100644 --- a/crates/tauri/CHANGELOG.md +++ b/crates/tauri/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## \[2.0.0-rc.13] + +### Enhancements + +- [`bc4804d48`](https://www.github.com/tauri-apps/tauri/commit/bc4804d4841efefd57fd1f3e147550a3340e2b31) ([#10924](https://www.github.com/tauri-apps/tauri/pull/10924) by [@madsmtm](https://www.github.com/tauri-apps/tauri/../../madsmtm)) Use `objc2` internally and in examples, leading to better memory safety. + +### Dependencies + +- Upgraded to `tauri-runtime-wry@2.0.0-rc.12` + +### Breaking Changes + +- [`bc4804d48`](https://www.github.com/tauri-apps/tauri/commit/bc4804d4841efefd57fd1f3e147550a3340e2b31) ([#10924](https://www.github.com/tauri-apps/tauri/pull/10924) by [@madsmtm](https://www.github.com/tauri-apps/tauri/../../madsmtm)) Change the pointer type of `PlatformWebview`'s `inner`, `controller`, `ns_window` and `view_controller` to `c_void`, to avoid publically depending on `objc`. + ## \[2.0.0-rc.12] ### New Features diff --git a/crates/tauri/Cargo.toml b/crates/tauri/Cargo.toml index bf90d38e241..23e7d0af26b 100644 --- a/crates/tauri/Cargo.toml +++ b/crates/tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri" -version = "2.0.0-rc.12" +version = "2.0.0-rc.13" description = "Make tiny, secure apps for all desktop platforms with Tauri" exclude = ["/test", "/.scripts", "CHANGELOG.md", "/target"] readme = "README.md" @@ -62,7 +62,7 @@ tauri-macros = { version = "2.0.0-rc.10", path = "../tauri-macros" } tauri-utils = { version = "2.0.0-rc.11", features = [ "resources", ], path = "../tauri-utils" } -tauri-runtime-wry = { version = "2.0.0-rc.11", path = "../tauri-runtime-wry", optional = true } +tauri-runtime-wry = { version = "2.0.0-rc.12", path = "../tauri-runtime-wry", optional = true } getrandom = "0.2" serde_repr = "0.1" state = "0.6"