Skip to content

Commit 8fc4ecf

Browse files
apply version updates (#1274)
Co-authored-by: wusyong <[email protected]>
1 parent a4d553a commit 8fc4ecf

File tree

5 files changed

+8
-20
lines changed

5 files changed

+8
-20
lines changed

.changes/currentUrl.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changes/fix-custom-protocol-async-linux.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changes/setWebview-jni-crash.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## \[0.40.1]
4+
5+
- [`b6863ed`](https://github.com/tauri-apps/wry/commit/b6863ed1884fb190ae46f37ed72dcdd92de700cd)([#1275](https://github.com/tauri-apps/wry/pull/1275)) On Android, set `RustWebViewClient.currentUrl` field early in `onPageStarted` method instead of `onPageFinished`
6+
- [`f089964`](https://github.com/tauri-apps/wry/commit/f089964a3cf3014987aca24a7e7d6cae83e67d8a)([#1276](https://github.com/tauri-apps/wry/pull/1276)) Fixes `with_asynchronous_custom_protocol` crashing when sending the response on Linux.
7+
- [`637289d`](https://github.com/tauri-apps/wry/commit/637289dfb36150635177eb629a12b40fdaac1afe)([#1272](https://github.com/tauri-apps/wry/pull/1272)) On Android, make `WryActivity.setWebview` method public to prevent JNI crashes.
8+
39
## \[0.40.0]
410

511
- [`a424a0b`](https://github.com/tauri-apps/wry/commit/a424a0b234cb20b3ca7305d87e82aba3c8b2bd41)([#1270](https://github.com/tauri-apps/wry/pull/1270)) On Windows, fix child webview invisible after creation because it was created with `0,0` size

Cargo.toml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ workspace = { }
22

33
[package]
44
name = "wry"
5-
version = "0.40.0"
5+
version = "0.40.1"
66
authors = [ "Tauri Programme within The Commons Conservancy" ]
77
edition = "2021"
88
license = "Apache-2.0 OR MIT"
@@ -121,7 +121,4 @@ percent-encoding = "2.3"
121121

122122
[lints.rust.unexpected_cfgs]
123123
level = "warn"
124-
check-cfg = [
125-
"cfg(linux)",
126-
"cfg(gtk)",
127-
]
124+
check-cfg = [ "cfg(linux)", "cfg(gtk)" ]

0 commit comments

Comments
 (0)