From 87ec7a3fefa3fa9bf06b1b4516e1da08f19da77d Mon Sep 17 00:00:00 2001 From: wusyong Date: Mon, 28 Aug 2023 07:29:24 +0000 Subject: [PATCH] publish new versions --- .changes/fix-endless-loop-handle-request.md | 5 ----- .changes/windows-http.md | 5 ----- .changes/windows-with-https-scheme.md | 5 ----- CHANGELOG.md | 6 ++++++ Cargo.toml | 2 +- 5 files changed, 7 insertions(+), 16 deletions(-) delete mode 100644 .changes/fix-endless-loop-handle-request.md delete mode 100644 .changes/windows-http.md delete mode 100644 .changes/windows-with-https-scheme.md diff --git a/.changes/fix-endless-loop-handle-request.md b/.changes/fix-endless-loop-handle-request.md deleted file mode 100644 index 62117d42e..000000000 --- a/.changes/fix-endless-loop-handle-request.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"wry": patch ---- - -Fixes Android freezing when handling request due to endless iteration when reading request headers. diff --git a/.changes/windows-http.md b/.changes/windows-http.md deleted file mode 100644 index 402381bc7..000000000 --- a/.changes/windows-http.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"wry": "minor" ---- - -**Breaking change** Wry now defaults to `http://.localhost/` for custom protocols on Windows. diff --git a/.changes/windows-with-https-scheme.md b/.changes/windows-with-https-scheme.md deleted file mode 100644 index 0565f6e95..000000000 --- a/.changes/windows-with-https-scheme.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"wry": "minor" ---- - -Add `WebViewBuilderExtWindows::with_https_scheme` to be able to choose between `http` and `https` for custom protocols on Windows. diff --git a/CHANGELOG.md b/CHANGELOG.md index 482d6d547..a152de2ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[0.32.0] + +- [`70d8ae0`](https://github.com/tauri-apps/wry/commit/70d8ae057c5e8b81db4aac28e5fa2dd3424b3307)([#1009](https://github.com/tauri-apps/wry/pull/1009)) Fixes Android freezing when handling request due to endless iteration when reading request headers. +- [`b5e1875`](https://github.com/tauri-apps/wry/commit/b5e1875230794502a8e74c74abe79ca63488e421)([#994](https://github.com/tauri-apps/wry/pull/994)) **Breaking change** Wry now defaults to `http://.localhost/` for custom protocols on Windows. +- [`b5e1875`](https://github.com/tauri-apps/wry/commit/b5e1875230794502a8e74c74abe79ca63488e421)([#994](https://github.com/tauri-apps/wry/pull/994)) Add `WebViewBuilderExtWindows::with_https_scheme` to be able to choose between `http` and `https` for custom protocols on Windows. + ## \[0.31.0] - [`e47562f`](https://github.com/tauri-apps/wry/commit/e47562f71284457ff77e4c8b6bf02fdbe19ab880)([#993](https://github.com/tauri-apps/wry/pull/993)) Update the unmaintained `kuchiki` crate to the maintained `kuchikiki` crate. diff --git a/Cargo.toml b/Cargo.toml index 58c2387b5..0e2ec7b4f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ workspace = { } [package] name = "wry" -version = "0.31.0" +version = "0.32.0" authors = [ "Tauri Programme within The Commons Conservancy" ] edition = "2021" license = "Apache-2.0 OR MIT"