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"