diff --git a/.changes/pre.json b/.changes/pre.json index 5f5a2c0c6..d60b8ddff 100644 --- a/.changes/pre.json +++ b/.changes/pre.json @@ -90,6 +90,7 @@ ".changes/enhance-event-emit.md", ".changes/enhance-ipc-url-check.md", ".changes/enhance-resource-dir-resolution.md", + ".changes/event-reopen.md", ".changes/expose-image-constructor.md", ".changes/expose-js-image.md", ".changes/fix-acl-webview-check.md", @@ -102,6 +103,7 @@ ".changes/fix-codegen-rerun-if-changed.md", ".changes/fix-config-arg.md", ".changes/fix-fs-scope-check-symlink.md", + ".changes/fix-incompatible-ipc-field-postmessage.md", ".changes/fix-inner-size.md", ".changes/fix-invoke-devtools-by-hotkey.md", ".changes/fix-ios-dev-logs.md", @@ -112,6 +114,7 @@ ".changes/fix-mobile-cmd-case.md", ".changes/fix-mobile-process-spawn.md", ".changes/fix-process-ipc-message-fn.md", + ".changes/fix-proxy-url-totokens-impl.md", ".changes/fix-remote-domain-url.md", ".changes/fix-reparent.md", ".changes/fix-rewrite-schema.md", @@ -201,6 +204,8 @@ ".changes/update-acl-paths-cli.md", ".changes/update-app-template-capabilities-conf.md", ".changes/update-plugin-template.md", + ".changes/url-result-runtime.md", + ".changes/url-result.md", ".changes/utils-bundle-target-all.md", ".changes/utils-bundle-type-all.md", ".changes/utils-debug-eprintln.md", diff --git a/Cargo.lock b/Cargo.lock index efa16e2b4..11a6d1f8a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3527,7 +3527,7 @@ checksum = "e1fc403891a21bcfb7c37834ba66a547a8f402146eba7265b5a6d88059c9ff2f" [[package]] name = "tauri" -version = "2.0.0-beta.18" +version = "2.0.0-beta.19" dependencies = [ "anyhow", "bytes", @@ -3585,7 +3585,7 @@ dependencies = [ [[package]] name = "tauri-build" -version = "2.0.0-beta.14" +version = "2.0.0-beta.15" dependencies = [ "anyhow", "cargo_toml", @@ -3607,7 +3607,7 @@ dependencies = [ [[package]] name = "tauri-codegen" -version = "2.0.0-beta.14" +version = "2.0.0-beta.15" dependencies = [ "base64 0.22.0", "brotli", @@ -3644,7 +3644,7 @@ dependencies = [ [[package]] name = "tauri-macros" -version = "2.0.0-beta.14" +version = "2.0.0-beta.15" dependencies = [ "heck 0.5.0", "proc-macro2", @@ -3656,7 +3656,7 @@ dependencies = [ [[package]] name = "tauri-plugin" -version = "2.0.0-beta.14" +version = "2.0.0-beta.15" dependencies = [ "anyhow", "glob", @@ -3671,7 +3671,7 @@ dependencies = [ [[package]] name = "tauri-runtime" -version = "2.0.0-beta.15" +version = "2.0.0-beta.16" dependencies = [ "dpi", "gtk", @@ -3688,7 +3688,7 @@ dependencies = [ [[package]] name = "tauri-runtime-wry" -version = "2.0.0-beta.15" +version = "2.0.0-beta.16" dependencies = [ "cocoa", "gtk", @@ -3711,7 +3711,7 @@ dependencies = [ [[package]] name = "tauri-utils" -version = "2.0.0-beta.14" +version = "2.0.0-beta.15" dependencies = [ "aes-gcm", "brotli", diff --git a/core/tauri-build/CHANGELOG.md b/core/tauri-build/CHANGELOG.md index d3ec225d9..45924250e 100644 --- a/core/tauri-build/CHANGELOG.md +++ b/core/tauri-build/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## \[2.0.0-beta.15] + +### Dependencies + +- Upgraded to `tauri-utils@2.0.0-beta.15` +- Upgraded to `tauri-codegen@2.0.0-beta.15` + ## \[2.0.0-beta.14] ### Dependencies diff --git a/core/tauri-build/Cargo.toml b/core/tauri-build/Cargo.toml index 8d98c19dd..689634fb5 100644 --- a/core/tauri-build/Cargo.toml +++ b/core/tauri-build/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-build" -version = "2.0.0-beta.14" +version = "2.0.0-beta.15" description = "build time code to pair with https://crates.io/crates/tauri" exclude = [ "CHANGELOG.md", "/target" ] readme = "README.md" @@ -28,8 +28,8 @@ rustdoc-args = [ "--cfg", "docsrs" ] [dependencies] anyhow = "1" quote = { version = "1", optional = true } -tauri-codegen = { version = "2.0.0-beta.14", path = "../tauri-codegen", optional = true } -tauri-utils = { version = "2.0.0-beta.14", path = "../tauri-utils", features = [ "build", "resources" ] } +tauri-codegen = { version = "2.0.0-beta.15", path = "../tauri-codegen", optional = true } +tauri-utils = { version = "2.0.0-beta.15", path = "../tauri-utils", features = [ "build", "resources" ] } cargo_toml = "0.17" serde = "1" serde_json = "1" diff --git a/core/tauri-codegen/CHANGELOG.md b/core/tauri-codegen/CHANGELOG.md index 0289ece19..5a58b288d 100644 --- a/core/tauri-codegen/CHANGELOG.md +++ b/core/tauri-codegen/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.0.0-beta.15] + +### Dependencies + +- Upgraded to `tauri-utils@2.0.0-beta.15` + ## \[2.0.0-beta.14] ### Dependencies diff --git a/core/tauri-codegen/Cargo.toml b/core/tauri-codegen/Cargo.toml index 09fb79072..b73cf1523 100644 --- a/core/tauri-codegen/Cargo.toml +++ b/core/tauri-codegen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-codegen" -version = "2.0.0-beta.14" +version = "2.0.0-beta.15" description = "code generation meant to be consumed inside of `tauri` through `tauri-build` or `tauri-macros`" exclude = [ "CHANGELOG.md", "/target" ] readme = "README.md" @@ -20,7 +20,7 @@ quote = "1" syn = "2" serde = { version = "1", features = [ "derive" ] } serde_json = "1" -tauri-utils = { version = "2.0.0-beta.14", path = "../tauri-utils", features = [ "build" ] } +tauri-utils = { version = "2.0.0-beta.15", path = "../tauri-utils", features = [ "build" ] } thiserror = "1" walkdir = "2" brotli = { version = "3", optional = true, default-features = false, features = [ "std" ] } diff --git a/core/tauri-macros/CHANGELOG.md b/core/tauri-macros/CHANGELOG.md index 2536efbf2..9bcadbca1 100644 --- a/core/tauri-macros/CHANGELOG.md +++ b/core/tauri-macros/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## \[2.0.0-beta.15] + +### Dependencies + +- Upgraded to `tauri-utils@2.0.0-beta.15` +- Upgraded to `tauri-codegen@2.0.0-beta.15` + ## \[2.0.0-beta.14] ### Dependencies diff --git a/core/tauri-macros/Cargo.toml b/core/tauri-macros/Cargo.toml index 724661f82..115b3fa52 100644 --- a/core/tauri-macros/Cargo.toml +++ b/core/tauri-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-macros" -version = "2.0.0-beta.14" +version = "2.0.0-beta.15" description = "Macros for the tauri crate." exclude = [ "CHANGELOG.md", "/target" ] readme = "README.md" @@ -20,8 +20,8 @@ proc-macro2 = { version = "1", features = [ "span-locations" ] } quote = "1" syn = { version = "2", features = [ "full" ] } heck = "0.5" -tauri-codegen = { version = "2.0.0-beta.14", default-features = false, path = "../tauri-codegen" } -tauri-utils = { version = "2.0.0-beta.14", path = "../tauri-utils" } +tauri-codegen = { version = "2.0.0-beta.15", default-features = false, path = "../tauri-codegen" } +tauri-utils = { version = "2.0.0-beta.15", path = "../tauri-utils" } [features] custom-protocol = [ ] diff --git a/core/tauri-plugin/CHANGELOG.md b/core/tauri-plugin/CHANGELOG.md index 66df4c2e6..0b215abf9 100644 --- a/core/tauri-plugin/CHANGELOG.md +++ b/core/tauri-plugin/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.0.0-beta.15] + +### Dependencies + +- Upgraded to `tauri-utils@2.0.0-beta.15` + ## \[2.0.0-beta.14] ### Enhancements diff --git a/core/tauri-plugin/Cargo.toml b/core/tauri-plugin/Cargo.toml index 0c835cadb..54b400b85 100644 --- a/core/tauri-plugin/Cargo.toml +++ b/core/tauri-plugin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-plugin" -version = "2.0.0-beta.14" +version = "2.0.0-beta.15" description = "Build script and runtime Tauri plugin definitions" authors = { workspace = true } homepage = { workspace = true } @@ -30,7 +30,7 @@ runtime = [ ] [dependencies] anyhow = { version = "1", optional = true } serde = { version = "1", optional = true } -tauri-utils = { version = "2.0.0-beta.14", default-features = false, features = [ "build" ], path = "../tauri-utils" } +tauri-utils = { version = "2.0.0-beta.15", default-features = false, features = [ "build" ], path = "../tauri-utils" } serde_json = { version = "1", optional = true } glob = { version = "0.3", optional = true } toml = { version = "0.8", optional = true } diff --git a/core/tauri-runtime-wry/CHANGELOG.md b/core/tauri-runtime-wry/CHANGELOG.md index 2d6e32ef5..8cd860547 100644 --- a/core/tauri-runtime-wry/CHANGELOG.md +++ b/core/tauri-runtime-wry/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## \[2.0.0-beta.16] + +### New Features + +- [`78839b6d2`](https://www.github.com/tauri-apps/tauri/commit/78839b6d2f1005a5e6e1a54b0305136bae0c3a7c)([#4865](https://www.github.com/tauri-apps/tauri/pull/4865)) Add `RunEvent::Reopen` for handle click on dock icon on macOS. + +### What's Changed + +- [`783ef0f2d`](https://www.github.com/tauri-apps/tauri/commit/783ef0f2d331f520fa827c3112f36c0b519b9292)([#9647](https://www.github.com/tauri-apps/tauri/pull/9647)) Changed `WebviewDispatch::url` getter to return a result. + +### Dependencies + +- Upgraded to `tauri-runtime@2.0.0-beta.16` +- Upgraded to `tauri-utils@2.0.0-beta.15` + ## \[2.0.0-beta.15] ### Dependencies diff --git a/core/tauri-runtime-wry/Cargo.toml b/core/tauri-runtime-wry/Cargo.toml index a15b7c4b9..18a45ada1 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 = "2.0.0-beta.15" +version = "2.0.0-beta.16" description = "Wry bindings to the Tauri runtime" exclude = [ "CHANGELOG.md", "/target" ] readme = "README.md" @@ -15,8 +15,8 @@ rust-version = { workspace = true } [dependencies] wry = { version = "0.39.3", default-features = false, features = [ "drag-drop", "protocol", "os-webview" ] } tao = { version = "0.28", default-features = false, features = [ "rwh_06" ] } -tauri-runtime = { version = "2.0.0-beta.15", path = "../tauri-runtime" } -tauri-utils = { version = "2.0.0-beta.14", path = "../tauri-utils" } +tauri-runtime = { version = "2.0.0-beta.16", path = "../tauri-runtime" } +tauri-utils = { version = "2.0.0-beta.15", path = "../tauri-utils" } raw-window-handle = "0.6" http = "1.1" url = "2" diff --git a/core/tauri-runtime/CHANGELOG.md b/core/tauri-runtime/CHANGELOG.md index b2f20f061..a832dd2ec 100644 --- a/core/tauri-runtime/CHANGELOG.md +++ b/core/tauri-runtime/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## \[2.0.0-beta.16] + +### New Features + +- [`78839b6d2`](https://www.github.com/tauri-apps/tauri/commit/78839b6d2f1005a5e6e1a54b0305136bae0c3a7c)([#4865](https://www.github.com/tauri-apps/tauri/pull/4865)) Add `RunEvent::Reopen` for handle click on dock icon on macOS. + +### What's Changed + +- [`783ef0f2d`](https://www.github.com/tauri-apps/tauri/commit/783ef0f2d331f520fa827c3112f36c0b519b9292)([#9647](https://www.github.com/tauri-apps/tauri/pull/9647)) Changed `WebviewDispatch::url` getter to return a result. + +### Dependencies + +- Upgraded to `tauri-utils@2.0.0-beta.15` + ## \[2.0.0-beta.15] ### Dependencies diff --git a/core/tauri-runtime/Cargo.toml b/core/tauri-runtime/Cargo.toml index 31580d556..5fea0bab8 100644 --- a/core/tauri-runtime/Cargo.toml +++ b/core/tauri-runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-runtime" -version = "2.0.0-beta.15" +version = "2.0.0-beta.16" description = "Runtime for Tauri applications" exclude = [ "CHANGELOG.md", "/target" ] readme = "README.md" @@ -29,7 +29,7 @@ targets = [ serde = { version = "1.0", features = [ "derive" ] } serde_json = "1.0" thiserror = "1.0" -tauri-utils = { version = "2.0.0-beta.14", path = "../tauri-utils" } +tauri-utils = { version = "2.0.0-beta.15", path = "../tauri-utils" } http = "1.1" raw-window-handle = "0.6" url = { version = "2" } diff --git a/core/tauri-utils/CHANGELOG.md b/core/tauri-utils/CHANGELOG.md index e7a69e0bc..963d5b7ae 100644 --- a/core/tauri-utils/CHANGELOG.md +++ b/core/tauri-utils/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.0.0-beta.15] + +### Bug Fixes + +- [`a5205f179`](https://www.github.com/tauri-apps/tauri/commit/a5205f179e577cce5c05b710b597da8f4e1d0780)([#9691](https://www.github.com/tauri-apps/tauri/pull/9691)) Fixes the ToTokens implementation of the window configuration `proxy_url` field. + ## \[2.0.0-beta.14] ### Bug Fixes diff --git a/core/tauri-utils/Cargo.toml b/core/tauri-utils/Cargo.toml index b39c1a1ea..449dc09c9 100644 --- a/core/tauri-utils/Cargo.toml +++ b/core/tauri-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-utils" -version = "2.0.0-beta.14" +version = "2.0.0-beta.15" description = "Utilities for Tauri" exclude = [ "CHANGELOG.md", "/target" ] readme = "README.md" diff --git a/core/tauri/CHANGELOG.md b/core/tauri/CHANGELOG.md index dce6c14d9..d4dd942c5 100644 --- a/core/tauri/CHANGELOG.md +++ b/core/tauri/CHANGELOG.md @@ -1,5 +1,27 @@ # Changelog +## \[2.0.0-beta.19] + +### New Features + +- [`78839b6d2`](https://www.github.com/tauri-apps/tauri/commit/78839b6d2f1005a5e6e1a54b0305136bae0c3a7c)([#4865](https://www.github.com/tauri-apps/tauri/pull/4865)) Add `RunEvent::Reopen` for handle click on dock icon on macOS. + +### Bug Fixes + +- [`fedca7386`](https://www.github.com/tauri-apps/tauri/commit/fedca7386079fe639c629d6084cc13031150baf6)([#9720](https://www.github.com/tauri-apps/tauri/pull/9720)) Fix IPC tracing format incompatible between the custom protocol and the postMessage implementations. + +### Dependencies + +- Upgraded to `tauri-runtime@2.0.0-beta.16` +- Upgraded to `tauri-runtime-wry@2.0.0-beta.16` +- Upgraded to `tauri-utils@2.0.0-beta.15` +- Upgraded to `tauri-macros@2.0.0-beta.15` +- Upgraded to `tauri-build@2.0.0-beta.15` + +### Breaking Changes + +- [`783ef0f2d`](https://www.github.com/tauri-apps/tauri/commit/783ef0f2d331f520fa827c3112f36c0b519b9292)([#9647](https://www.github.com/tauri-apps/tauri/pull/9647)) Changed `WebviewWindow::url` and `Webview::url` getter to return a result. + ## \[2.0.0-beta.18] ### New Features diff --git a/core/tauri/Cargo.toml b/core/tauri/Cargo.toml index edf59f671..7e31aeb4f 100644 --- a/core/tauri/Cargo.toml +++ b/core/tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri" -version = "2.0.0-beta.18" +version = "2.0.0-beta.19" description = "Make tiny, secure apps for all desktop platforms with Tauri" exclude = [ "/test", "/.scripts", "CHANGELOG.md", "/target" ] readme = "README.md" @@ -51,10 +51,10 @@ uuid = { version = "1", features = [ "v4" ], optional = true } url = "2" anyhow = "1.0" thiserror = "1.0" -tauri-runtime = { version = "2.0.0-beta.15", path = "../tauri-runtime" } -tauri-macros = { version = "2.0.0-beta.14", path = "../tauri-macros" } -tauri-utils = { version = "2.0.0-beta.14", features = [ "resources" ], path = "../tauri-utils" } -tauri-runtime-wry = { version = "2.0.0-beta.15", path = "../tauri-runtime-wry", optional = true } +tauri-runtime = { version = "2.0.0-beta.16", path = "../tauri-runtime" } +tauri-macros = { version = "2.0.0-beta.15", path = "../tauri-macros" } +tauri-utils = { version = "2.0.0-beta.15", features = [ "resources" ], path = "../tauri-utils" } +tauri-runtime-wry = { version = "2.0.0-beta.16", path = "../tauri-runtime-wry", optional = true } getrandom = "0.2" serde_repr = "0.1" state = "0.6" @@ -110,8 +110,8 @@ swift-rs = "1.0.6" [build-dependencies] heck = "0.5" -tauri-build = { path = "../tauri-build/", default-features = false, version = "2.0.0-beta.14" } -tauri-utils = { path = "../tauri-utils/", version = "2.0.0-beta.14", features = [ "build" ] } +tauri-build = { path = "../tauri-build/", default-features = false, version = "2.0.0-beta.15" } +tauri-utils = { path = "../tauri-utils/", version = "2.0.0-beta.15", features = [ "build" ] } [dev-dependencies] proptest = "1.4.0" diff --git a/tooling/bundler/CHANGELOG.md b/tooling/bundler/CHANGELOG.md index 48ba87f37..3ad16fcd5 100644 --- a/tooling/bundler/CHANGELOG.md +++ b/tooling/bundler/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.0.1-beta.13] + +### Dependencies + +- Upgraded to `tauri-utils@2.0.0-beta.15` + ## \[2.0.1-beta.12] ### Dependencies diff --git a/tooling/bundler/Cargo.toml b/tooling/bundler/Cargo.toml index 9421b9fa6..8aab7ceae 100644 --- a/tooling/bundler/Cargo.toml +++ b/tooling/bundler/Cargo.toml @@ -2,7 +2,7 @@ workspace = { } [package] name = "tauri-bundler" -version = "2.0.1-beta.12" +version = "2.0.1-beta.13" authors = [ "George Burton ", "Tauri Programme within The Commons Conservancy" @@ -17,7 +17,7 @@ rust-version = "1.70" exclude = [ "CHANGELOG.md", "/target", "rustfmt.toml" ] [dependencies] -tauri-utils = { version = "2.0.0-beta.14", path = "../../core/tauri-utils", features = [ "resources" ] } +tauri-utils = { version = "2.0.0-beta.15", path = "../../core/tauri-utils", features = [ "resources" ] } image = "0.24.9" flate2 = "1.0" anyhow = "1.0" diff --git a/tooling/cli/CHANGELOG.md b/tooling/cli/CHANGELOG.md index 2b041d41e..e71d53d2a 100644 --- a/tooling/cli/CHANGELOG.md +++ b/tooling/cli/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## \[2.0.0-beta.17] + +### Dependencies + +- Upgraded to `tauri-utils@2.0.0-beta.15` +- Upgraded to `tauri-bundler@2.0.1-beta.13` + ## \[2.0.0-beta.16] ### Bug Fixes diff --git a/tooling/cli/Cargo.lock b/tooling/cli/Cargo.lock index b35d56f65..aa0909502 100644 --- a/tooling/cli/Cargo.lock +++ b/tooling/cli/Cargo.lock @@ -4853,7 +4853,7 @@ dependencies = [ [[package]] name = "tauri-bundler" -version = "2.0.1-beta.12" +version = "2.0.1-beta.13" dependencies = [ "anyhow", "ar", @@ -4881,7 +4881,7 @@ dependencies = [ "strsim 0.11.0", "tar", "tauri-icns", - "tauri-utils 2.0.0-beta.14", + "tauri-utils 2.0.0-beta.15", "tempfile", "thiserror", "time", @@ -4895,7 +4895,7 @@ dependencies = [ [[package]] name = "tauri-cli" -version = "2.0.0-beta.16" +version = "2.0.0-beta.17" dependencies = [ "anyhow", "axum", @@ -4946,7 +4946,7 @@ dependencies = [ "tauri-bundler", "tauri-icns", "tauri-utils 1.5.4", - "tauri-utils 2.0.0-beta.14", + "tauri-utils 2.0.0-beta.15", "thiserror", "tokio", "toml 0.8.10", @@ -5012,7 +5012,7 @@ dependencies = [ [[package]] name = "tauri-utils" -version = "2.0.0-beta.14" +version = "2.0.0-beta.15" dependencies = [ "aes-gcm", "ctor", diff --git a/tooling/cli/Cargo.toml b/tooling/cli/Cargo.toml index 5fccf1783..4aaef336c 100644 --- a/tooling/cli/Cargo.toml +++ b/tooling/cli/Cargo.toml @@ -3,7 +3,7 @@ members = [ "node" ] [package] name = "tauri-cli" -version = "2.0.0-beta.16" +version = "2.0.0-beta.17" authors = [ "Tauri Programme within The Commons Conservancy" ] edition = "2021" rust-version = "1.70" @@ -49,7 +49,7 @@ sublime_fuzzy = "0.7" clap_complete = "4" clap = { version = "4.5", features = [ "derive", "env" ] } anyhow = "1.0" -tauri-bundler = { version = "2.0.1-beta.12", default-features = false, path = "../bundler" } +tauri-bundler = { version = "2.0.1-beta.13", default-features = false, path = "../bundler" } colored = "2.1" serde = { version = "1.0", features = [ "derive" ] } serde_json = { version = "1.0", features = [ "preserve_order" ] } @@ -59,7 +59,7 @@ shared_child = "1.0" duct = "0.13" toml_edit = { version = "0.22", features = [ "serde" ] } json-patch = "1.2" -tauri-utils = { version = "2.0.0-beta.14", path = "../../core/tauri-utils", features = [ "isolation", "schema", "config-json5", "config-toml" ] } +tauri-utils = { version = "2.0.0-beta.15", path = "../../core/tauri-utils", features = [ "isolation", "schema", "config-json5", "config-toml" ] } tauri-utils-v1 = { version = "1", package = "tauri-utils", features = [ "isolation", "schema", "config-json5", "config-toml" ] } toml = "0.8" jsonschema = "0.17" diff --git a/tooling/cli/metadata-v2.json b/tooling/cli/metadata-v2.json index 880734f9c..3625ec824 100644 --- a/tooling/cli/metadata-v2.json +++ b/tooling/cli/metadata-v2.json @@ -1,9 +1,9 @@ { "cli.js": { - "version": "2.0.0-beta.16", + "version": "2.0.0-beta.17", "node": ">= 10.0.0" }, - "tauri": "2.0.0-beta.18", - "tauri-build": "2.0.0-beta.14", - "tauri-plugin": "2.0.0-beta.14" + "tauri": "2.0.0-beta.19", + "tauri-build": "2.0.0-beta.15", + "tauri-plugin": "2.0.0-beta.15" } diff --git a/tooling/cli/node/CHANGELOG.md b/tooling/cli/node/CHANGELOG.md index a61bf1f56..239d42877 100644 --- a/tooling/cli/node/CHANGELOG.md +++ b/tooling/cli/node/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.0.0-beta.17] + +### Dependencies + +- Upgraded to `tauri-cli@2.0.0-beta.17` + ## \[2.0.0-beta.16] ### Bug Fixes diff --git a/tooling/cli/node/package.json b/tooling/cli/node/package.json index f343ff0ea..52196808f 100644 --- a/tooling/cli/node/package.json +++ b/tooling/cli/node/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/cli", - "version": "2.0.0-beta.16", + "version": "2.0.0-beta.17", "description": "Command line interface for building Tauri apps", "funding": { "type": "opencollective",