From be554579fa833cd4f1cf36c2dbe97dc456ed6a2c Mon Sep 17 00:00:00 2001 From: wusyong Date: Sun, 14 Aug 2022 12:03:27 +0000 Subject: [PATCH] publish new versions --- .changes/android-custom-protocol.md | 5 ----- .changes/android-eval.md | 5 ----- .changes/ios-subview.md | 5 ----- .changes/refactor-android.md | 5 ----- CHANGELOG.md | 11 +++++++++++ Cargo.toml | 2 +- 6 files changed, 12 insertions(+), 21 deletions(-) delete mode 100644 .changes/android-custom-protocol.md delete mode 100644 .changes/android-eval.md delete mode 100644 .changes/ios-subview.md delete mode 100644 .changes/refactor-android.md diff --git a/.changes/android-custom-protocol.md b/.changes/android-custom-protocol.md deleted file mode 100644 index 3cc881d95..000000000 --- a/.changes/android-custom-protocol.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"wry": patch ---- - -Implement custom protocol on Android. diff --git a/.changes/android-eval.md b/.changes/android-eval.md deleted file mode 100644 index b0f88e168..000000000 --- a/.changes/android-eval.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"wry": patch ---- - -Implement `WebView::eval` on Android. diff --git a/.changes/ios-subview.md b/.changes/ios-subview.md deleted file mode 100644 index d5037f69d..000000000 --- a/.changes/ios-subview.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"wry": patch ---- - -On iOS, add webview as subview instead of replacing original view. diff --git a/.changes/refactor-android.md b/.changes/refactor-android.md deleted file mode 100644 index b6f1da89d..000000000 --- a/.changes/refactor-android.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"wry": patch ---- - -Move WebView logic from tao to wry. diff --git a/CHANGELOG.md b/CHANGELOG.md index 6df474ad9..54840b1f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## \[0.20.2] + +- Implement custom protocol on Android. + - [dc68289](https://github.com/tauri-apps/wry/commit/dc68289169196419b8c9cda73c73b139ea1301f9) feat(android): implement custom protocol ([#656](https://github.com/tauri-apps/wry/pull/656)) on 2022-08-13 +- Implement `WebView::eval` on Android. + - [690fd26](https://github.com/tauri-apps/wry/commit/690fd26a3b9bd47f9d7b1b5d2aa3dcb1c018a771) feat(android): implement eval ([#658](https://github.com/tauri-apps/wry/pull/658)) on 2022-08-13 +- On iOS, add webview as subview instead of replacing original view. + - [74391e0](https://github.com/tauri-apps/wry/commit/74391e0769d0e0f4be015147ddfa39bf25c90928) fix(ios): addSubview instead of setContentView ([#655](https://github.com/tauri-apps/wry/pull/655)) on 2022-08-13 +- Move WebView logic from tao to wry. + - [aba1ae5](https://github.com/tauri-apps/wry/commit/aba1ae5afcf96c88b1215ef66f38a5a635ecf7c3) refactor(android): move WebView logic from tao to wry ([#659](https://github.com/tauri-apps/wry/pull/659)) on 2022-08-14 + ## \[0.20.1] - Add android support diff --git a/Cargo.toml b/Cargo.toml index 278469558..967b5e946 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ workspace = { } [package] name = "wry" -version = "0.20.1" +version = "0.20.2" authors = [ "Tauri Programme within The Commons Conservancy" ] edition = "2021" license = "Apache-2.0 OR MIT"