From 6fbdb7e7b5ca3a5955c89d48495fef9bfe246940 Mon Sep 17 00:00:00 2001 From: amrbashir Date: Thu, 15 Feb 2024 15:39:21 +0000 Subject: [PATCH] apply version updates --- .changes/data-url.md | 5 ----- .changes/linux-file-drop-event.md | 5 ----- .changes/reparent.md | 5 ----- .changes/revert-global-command.md | 5 ----- .changes/url.md | 11 ----------- CHANGELOG.md | 14 ++++++++++++++ Cargo.toml | 2 +- 7 files changed, 15 insertions(+), 32 deletions(-) delete mode 100644 .changes/data-url.md delete mode 100644 .changes/linux-file-drop-event.md delete mode 100644 .changes/reparent.md delete mode 100644 .changes/revert-global-command.md delete mode 100644 .changes/url.md diff --git a/.changes/data-url.md b/.changes/data-url.md deleted file mode 100644 index 8cfcec4c2..000000000 --- a/.changes/data-url.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"wry": "minor" ---- - -**Breaking change**: Removed `data:` url support, as its native support in Windows and macOS are buggy and unreliable, use `Webview::with_html` instead. diff --git a/.changes/linux-file-drop-event.md b/.changes/linux-file-drop-event.md deleted file mode 100644 index d43b258f6..000000000 --- a/.changes/linux-file-drop-event.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"wry": "patch" ---- - -On Linux, decode `FilDropEvent` paths before emitting them to make it consistent across all platforms. diff --git a/.changes/reparent.md b/.changes/reparent.md deleted file mode 100644 index 040b1d108..000000000 --- a/.changes/reparent.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"wry": minor ---- - -Added `WebViewExtMacOS::reparent`,`WebViewExtWindows::reparent` and `WebViewExtUnix::reparent`. diff --git a/.changes/revert-global-command.md b/.changes/revert-global-command.md deleted file mode 100644 index ac21f9f62..000000000 --- a/.changes/revert-global-command.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"wry": patch ---- - -Revert global keys shortcuts (wry#1156) \ No newline at end of file diff --git a/.changes/url.md b/.changes/url.md deleted file mode 100644 index b856db423..000000000 --- a/.changes/url.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -"wry": "minor" ---- - -**Breaking change**: Removed internal url parsing which had a few side-effects such as encoded url content, now it is up to the user to pass a valid URL as a string. This also came with a few breaking changes: - -- Removed `Url` struct re-export -- Removed `Error::UrlError` variant. -- Changed `WebviewAttributes::url` field type to `String`. -- Changed `WebviewBuilder::with_url` and `WebviewBuilder::with_url_and_headers` return type to `WebviewBuilder` instead of `Result`. -- Changed `Webview::url` getter to return a `String` instead of `Url`. diff --git a/CHANGELOG.md b/CHANGELOG.md index de7acf3dd..c2fe37d98 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## \[0.37.0] + +- [`8c86fba`](https://github.com/tauri-apps/wry/commit/8c86fbaf51cd970737cc070583318d4b532349d2) **Breaking change**: Removed `data:` url support, as its native support in Windows and macOS are buggy and unreliable, use `Webview::with_html` instead. +- [`8c86fba`](https://github.com/tauri-apps/wry/commit/8c86fbaf51cd970737cc070583318d4b532349d2) On Linux, decode `FilDropEvent` paths before emitting them to make it consistent across all platforms. +- [`8c86fba`](https://github.com/tauri-apps/wry/commit/8c86fbaf51cd970737cc070583318d4b532349d2) Added `WebViewExtMacOS::reparent`,`WebViewExtWindows::reparent` and `WebViewExtUnix::reparent`. +- [`8c86fba`](https://github.com/tauri-apps/wry/commit/8c86fbaf51cd970737cc070583318d4b532349d2) Revert global keys shortcuts (wry#1156) +- [`8c86fba`](https://github.com/tauri-apps/wry/commit/8c86fbaf51cd970737cc070583318d4b532349d2) **Breaking change**: Removed internal url parsing which had a few side-effects such as encoded url content, now it is up to the user to pass a valid URL as a string. This also came with a few breaking changes: + + - Removed `Url` struct re-export + - Removed `Error::UrlError` variant. + - Changed `WebviewAttributes::url` field type to `String`. + - Changed `WebviewBuilder::with_url` and `WebviewBuilder::with_url_and_headers` return type to `WebviewBuilder` instead of `Result`. + - Changed `Webview::url` getter to return a `String` instead of `Url`. + ## \[0.36.0] - [`8646120`](https://github.com/tauri-apps/wry/commit/8646120339b8ed983582caa9e668fc286dc59cb3)([#1159](https://github.com/tauri-apps/wry/pull/1159)) On android, fix `no non-static method ".evalScript(ILjava/lang/String;)"` when calling `Window::eval`. diff --git a/Cargo.toml b/Cargo.toml index 9d6865033..fcd81912f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ workspace = { } [package] name = "wry" -version = "0.36.0" +version = "0.37.0" authors = [ "Tauri Programme within The Commons Conservancy" ] edition = "2021" license = "Apache-2.0 OR MIT"