diff --git a/.changes/pre.json b/.changes/pre.json index 36203927a..c9b89db9c 100644 --- a/.changes/pre.json +++ b/.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" diff --git a/.changes/runtime-bump-deps.md b/.changes/runtime-bump-deps.md new file mode 100644 index 000000000..2ccaa99bb --- /dev/null +++ b/.changes/runtime-bump-deps.md @@ -0,0 +1,5 @@ +--- +"tauri-runtime": patch:deps +--- + +Update dependencies. diff --git a/.changes/wry-0.35.md b/.changes/wry-0.35.md new file mode 100644 index 000000000..a98e23a0b --- /dev/null +++ b/.changes/wry-0.35.md @@ -0,0 +1,5 @@ +--- +"tauri-runtime-wry": patch:deps +--- + +Update to wry v0.35. diff --git a/core/tauri-runtime-wry/CHANGELOG.md b/core/tauri-runtime-wry/CHANGELOG.md index 9d7834a60..f38d9dd58 100644 --- a/core/tauri-runtime-wry/CHANGELOG.md +++ b/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 diff --git a/core/tauri-runtime-wry/Cargo.toml b/core/tauri-runtime-wry/Cargo.toml index 35d6bc118..2ce9d728e 100644 --- a/core/tauri-runtime-wry/Cargo.toml +++ b/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" diff --git a/core/tauri-runtime/CHANGELOG.md b/core/tauri-runtime/CHANGELOG.md index d7fea7345..b61f75191 100644 --- a/core/tauri-runtime/CHANGELOG.md +++ b/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 diff --git a/core/tauri-runtime/Cargo.toml b/core/tauri-runtime/Cargo.toml index 122049547..99586f485 100644 --- a/core/tauri-runtime/Cargo.toml +++ b/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" diff --git a/core/tauri/Cargo.toml b/core/tauri/Cargo.toml index eaa7542ae..17380ae17 100644 --- a/core/tauri/Cargo.toml +++ b/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"