From e11ad09b326eae45c6565a25b941782a89427e69 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 8 May 2022 18:30:20 -0300 Subject: [PATCH] Publish New Versions (#579) Co-authored-by: lucasfernog --- .changes/fix-macos-10.md | 5 ----- .changes/macos-print.md | 5 ----- CHANGELOG.md | 7 +++++++ Cargo.toml | 2 +- 4 files changed, 8 insertions(+), 11 deletions(-) delete mode 100644 .changes/fix-macos-10.md delete mode 100644 .changes/macos-print.md diff --git a/.changes/fix-macos-10.md b/.changes/fix-macos-10.md deleted file mode 100644 index 8b9dc5a34..000000000 --- a/.changes/fix-macos-10.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"wry": patch ---- - -Fixes a crash on macOS below Big Sur due to `titlebarSeparatorStyle` (11+ API) usage. diff --git a/.changes/macos-print.md b/.changes/macos-print.md deleted file mode 100644 index 48e9bce54..000000000 --- a/.changes/macos-print.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"wry": patch ---- - -Only run `WebView::print` on macOS on v11+. This prevents a crash on older versions. diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c741b31d..12c63ba32 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## \[0.16.1] + +- Fixes a crash on macOS below Big Sur due to `titlebarSeparatorStyle` (11+ API) usage. + - [eb2dddb](https://github.com/tauri-apps/wry/commit/eb2dddb611f7fadf35bf7d7c32cb6d054da9fe9e) fix(macos): only use APIs when supported on 2022-05-08 +- Only run `WebView::print` on macOS on v11+. This prevents a crash on older versions. + - [eb2dddb](https://github.com/tauri-apps/wry/commit/eb2dddb611f7fadf35bf7d7c32cb6d054da9fe9e) fix(macos): only use APIs when supported on 2022-05-08 + ## \[0.16.0] - Fixes a typo in the `WebviewExtMacOS` conditional compilation. diff --git a/Cargo.toml b/Cargo.toml index b6632e82f..846d76c12 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ workspace = { } [package] name = "wry" -version = "0.16.0" +version = "0.16.1" authors = [ "Tauri Programme within The Commons Conservancy" ] edition = "2021" license = "Apache-2.0 OR MIT"