diff --git a/.changes/allow-injecting-into-subframes.md b/.changes/allow-injecting-into-subframes.md deleted file mode 100644 index 30f88facd3..0000000000 --- a/.changes/allow-injecting-into-subframes.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"wry": minor ---- - -Add `WebViewBuilder::with_initialization_script_for_main_only` to enable injecting JavaScript code into main frame only or all subframes. \ No newline at end of file diff --git a/.changes/cookies-api.md b/.changes/cookies-api.md deleted file mode 100644 index de2225bbea..0000000000 --- a/.changes/cookies-api.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"wry": "patch" ---- - -Add `WebView::cookies` and `WebView::cookies_for_url` APIs. diff --git a/.changes/extension-path.md b/.changes/extension-path.md deleted file mode 100644 index 4dbec6ad75..0000000000 --- a/.changes/extension-path.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"wry": "patch" ---- - -Add `WebViewBuilder::with_extension_path` API to Windows and Linux. diff --git a/CHANGELOG.md b/CHANGELOG.md index 5793124641..b9d79f74bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[0.47.0] + +- [`7221256`](https://github.com/tauri-apps/wry/commit/72212568cb4d815463fc035969f9cac60fe28ba6) ([#1365](https://github.com/tauri-apps/wry/pull/1365) by [@Norbiros](https://github.com/tauri-apps/wry/../../Norbiros)) Add `WebViewBuilder::with_initialization_script_for_main_only` to enable injecting JavaScript code into main frame only or all subframes. +- [`c1b26b9`](https://github.com/tauri-apps/wry/commit/c1b26b9612bf5c5a9e4e0185f73739a2444343cd) ([#1394](https://github.com/tauri-apps/wry/pull/1394) by [@amrbashir](https://github.com/tauri-apps/wry/../../amrbashir)) Add `WebView::cookies` and `WebView::cookies_for_url` APIs. +- [`1d63fa3`](https://github.com/tauri-apps/wry/commit/1d63fa325327a02a0a8be9ee50ce1eb7a0e8e04f) ([#1403](https://github.com/tauri-apps/wry/pull/1403) by [@SpikeHD](https://github.com/tauri-apps/wry/../../SpikeHD)) Add `WebViewBuilder::with_extension_path` API to Windows and Linux. + ## \[0.46.3] - [`be122f6`](https://github.com/tauri-apps/wry/commit/be122f667f9f5516b4bc25f9e8c61cb99dbe1440) ([#1397](https://github.com/tauri-apps/wry/pull/1397) by [@lucasfernog](https://github.com/tauri-apps/wry/../../lucasfernog)) Fix `with_user_agent` regression. diff --git a/Cargo.toml b/Cargo.toml index e413dea317..072519f156 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ workspace = {} [package] name = "wry" -version = "0.46.3" +version = "0.47.0" authors = ["Tauri Programme within The Commons Conservancy"] edition = "2021" license = "Apache-2.0 OR MIT"