Jelajahi Sumber

fix: bump tauri-runtime-wry for #8213

Lucas Nogueira 1 tahun lalu
induk
melakukan
30c5d86f88

+ 2 - 0
.changes/pre.json

@@ -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"

+ 5 - 0
.changes/runtime-bump-deps.md

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

+ 5 - 0
.changes/wry-0.35.md

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

+ 7 - 0
core/tauri-runtime-wry/CHANGELOG.md

@@ -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

+ 3 - 3
core/tauri-runtime-wry/Cargo.toml

@@ -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"

+ 6 - 0
core/tauri-runtime/CHANGELOG.md

@@ -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

+ 1 - 1
core/tauri-runtime/Cargo.toml

@@ -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"

+ 2 - 2
core/tauri/Cargo.toml

@@ -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"