fix: bump tauri-runtime-wry for #8213

This commit is contained in:
Lucas Nogueira 2023-12-19 11:33:35 -03:00
parent e44b36fea4
commit 30c5d86f88
No known key found for this signature in database
GPG Key ID: FFEA6C72E73482F1
8 changed files with 31 additions and 6 deletions

View File

@ -249,6 +249,7 @@
".changes/rfd101.md",
".changes/run-event-opened.md",
".changes/run-mobile-plugin.md",
".changes/runtime-bump-deps.md",
".changes/runtime-create-window-handler.md",
".changes/runtime-custom-protocol-async.md",
".changes/runtime-defaultvbox.md",
@ -322,6 +323,7 @@
".changes/with-webview.md",
".changes/wry-0.32.md",
".changes/wry-0.34.md",
".changes/wry-0.35.md",
".changes/wry-navigate-method.md",
".changes/wry26.md",
".changes/xcode-archive.md"

View File

@ -0,0 +1,5 @@
---
"tauri-runtime": patch:deps
---
Update dependencies.

5
.changes/wry-0.35.md Normal file
View File

@ -0,0 +1,5 @@
---
"tauri-runtime-wry": patch:deps
---
Update to wry v0.35.

View File

@ -1,5 +1,12 @@
# Changelog
## \[1.0.0-alpha.7]
### Dependencies
- Upgraded to `tauri-runtime@1.0.0-alpha.6`
- [\`\`](https://www.github.com/tauri-apps/tauri/commit/undefined) Update to wry v0.35.
## \[1.0.0-alpha.6]
### Dependencies

View File

@ -1,6 +1,6 @@
[package]
name = "tauri-runtime-wry"
version = "1.0.0-alpha.6"
version = "1.0.0-alpha.7"
description = "Wry bindings to the Tauri runtime"
exclude = [ "CHANGELOG.md", "/target" ]
readme = "README.md"
@ -14,8 +14,8 @@ rust-version = { workspace = true }
[dependencies]
wry = { version = "0.35", default-features = false, features = [ "file-drop", "protocol", "os-webview" ] }
tao = { version = "0.24", default-features = false, features = ["rwh_05"] }
tauri-runtime = { version = "1.0.0-alpha.5", path = "../tauri-runtime" }
tao = { version = "0.24", default-features = false, features = [ "rwh_05" ] }
tauri-runtime = { version = "1.0.0-alpha.6", path = "../tauri-runtime" }
tauri-utils = { version = "2.0.0-alpha.11", path = "../tauri-utils" }
raw-window-handle = "0.5"
http = "0.2"

View File

@ -1,5 +1,11 @@
# Changelog
## \[1.0.0-alpha.6]
### Dependencies
- [\`\`](https://www.github.com/tauri-apps/tauri/commit/undefined) Update dependencies.
## \[1.0.0-alpha.5]
### Dependencies

View File

@ -1,6 +1,6 @@
[package]
name = "tauri-runtime"
version = "1.0.0-alpha.5"
version = "1.0.0-alpha.6"
description = "Runtime for Tauri applications"
exclude = [ "CHANGELOG.md", "/target" ]
readme = "README.md"

View File

@ -49,10 +49,10 @@ uuid = { version = "1", features = [ "v4" ], optional = true }
url = { version = "2.4" }
anyhow = "1.0"
thiserror = "1.0"
tauri-runtime = { version = "1.0.0-alpha.5", path = "../tauri-runtime" }
tauri-runtime = { version = "1.0.0-alpha.6", path = "../tauri-runtime" }
tauri-macros = { version = "2.0.0-alpha.11", path = "../tauri-macros" }
tauri-utils = { version = "2.0.0-alpha.11", features = [ "resources" ], path = "../tauri-utils" }
tauri-runtime-wry = { version = "1.0.0-alpha.6", path = "../tauri-runtime-wry", optional = true }
tauri-runtime-wry = { version = "1.0.0-alpha.7", path = "../tauri-runtime-wry", optional = true }
getrandom = "0.2"
serde_repr = "0.1"
state = "0.6"