From 6bb721cd3d0f28d654db32d75ac41ecaffa6691c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 9 May 2024 12:28:21 -0300 Subject: [PATCH] Apply Version Updates From Current Changes (v1) (#9709) Co-authored-by: lucasfernog --- .changes/bundler-nsis-resources-dollar.md | 5 ----- .changes/fix-draw-tracing.md | 5 ----- Cargo.lock | 4 ++-- core/tauri-runtime-wry/CHANGELOG.md | 6 ++++++ core/tauri-runtime-wry/Cargo.toml | 2 +- core/tauri/CHANGELOG.md | 6 ++++++ core/tauri/Cargo.toml | 4 ++-- tooling/bundler/CHANGELOG.md | 6 ++++++ tooling/bundler/Cargo.toml | 2 +- tooling/cli/CHANGELOG.md | 6 ++++++ tooling/cli/Cargo.lock | 4 ++-- tooling/cli/Cargo.toml | 4 ++-- tooling/cli/metadata.json | 4 ++-- tooling/cli/node/CHANGELOG.md | 6 ++++++ tooling/cli/node/package.json | 2 +- 15 files changed, 43 insertions(+), 23 deletions(-) delete mode 100644 .changes/bundler-nsis-resources-dollar.md delete mode 100644 .changes/fix-draw-tracing.md diff --git a/.changes/bundler-nsis-resources-dollar.md b/.changes/bundler-nsis-resources-dollar.md deleted file mode 100644 index ebf5e96d4..000000000 --- a/.changes/bundler-nsis-resources-dollar.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'tauri-bundler': 'patch:bug' ---- - -Fix failing to create NSIS installer when including resources that has `$` in its path. \ No newline at end of file diff --git a/.changes/fix-draw-tracing.md b/.changes/fix-draw-tracing.md deleted file mode 100644 index fca8a8b55..000000000 --- a/.changes/fix-draw-tracing.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tauri-runtime-wry": patch:bug ---- - -Fixes redraw tracing span not closing. diff --git a/Cargo.lock b/Cargo.lock index a1871967b..b65a60490 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4021,7 +4021,7 @@ checksum = "e1fc403891a21bcfb7c37834ba66a547a8f402146eba7265b5a6d88059c9ff2f" [[package]] name = "tauri" -version = "1.6.3" +version = "1.6.4" dependencies = [ "anyhow", "base64 0.21.7", @@ -4180,7 +4180,7 @@ dependencies = [ [[package]] name = "tauri-runtime-wry" -version = "0.14.6" +version = "0.14.7" dependencies = [ "arboard", "cocoa", diff --git a/core/tauri-runtime-wry/CHANGELOG.md b/core/tauri-runtime-wry/CHANGELOG.md index 49796dbce..5e4300349 100644 --- a/core/tauri-runtime-wry/CHANGELOG.md +++ b/core/tauri-runtime-wry/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[0.14.7] + +### Bug Fixes + +- [`2eb21378a`](https://www.github.com/tauri-apps/tauri/commit/2eb21378a65107da0d4a1ab425767e99580966c2)([#9718](https://www.github.com/tauri-apps/tauri/pull/9718)) Fixes redraw tracing span not closing. + ## \[0.14.6] ### Dependencies diff --git a/core/tauri-runtime-wry/Cargo.toml b/core/tauri-runtime-wry/Cargo.toml index fd19b2a39..e2c7ae069 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 = "0.14.6" +version = "0.14.7" authors = [ "Tauri Programme within The Commons Conservancy" ] categories = [ "gui", "web-programming" ] license = "Apache-2.0 OR MIT" diff --git a/core/tauri/CHANGELOG.md b/core/tauri/CHANGELOG.md index 642b94055..acbb13cfc 100644 --- a/core/tauri/CHANGELOG.md +++ b/core/tauri/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[1.6.4] + +### Dependencies + +- Upgraded to `tauri-runtime-wry@0.14.7` + ## \[1.6.3] ### Enhancements diff --git a/core/tauri/Cargo.toml b/core/tauri/Cargo.toml index 35ccded9c..de458bb3f 100644 --- a/core/tauri/Cargo.toml +++ b/core/tauri/Cargo.toml @@ -10,7 +10,7 @@ license = "Apache-2.0 OR MIT" name = "tauri" readme = "README.md" repository = "https://github.com/tauri-apps/tauri" -version = "1.6.3" +version = "1.6.4" [package.metadata.docs.rs] no-default-features = true @@ -61,7 +61,7 @@ once_cell = "1" tauri-runtime = { version = "0.14.3", path = "../tauri-runtime" } tauri-macros = { version = "1.4.4", path = "../tauri-macros" } tauri-utils = { version = "1.5.4", features = [ "resources" ], path = "../tauri-utils" } -tauri-runtime-wry = { version = "0.14.6", path = "../tauri-runtime-wry", optional = true } +tauri-runtime-wry = { version = "0.14.7", path = "../tauri-runtime-wry", optional = true } rand = "0.8" semver = { version = "1.0", features = [ "serde" ] } serde_repr = "0.1" diff --git a/tooling/bundler/CHANGELOG.md b/tooling/bundler/CHANGELOG.md index 1f3f57a2d..abd55d909 100644 --- a/tooling/bundler/CHANGELOG.md +++ b/tooling/bundler/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[1.5.4] + +### Bug Fixes + +- [`ab9ec42c1`](https://www.github.com/tauri-apps/tauri/commit/ab9ec42c102da7594f5d83998aa095d558e86d90)([#9659](https://www.github.com/tauri-apps/tauri/pull/9659)) Fix failing to create NSIS installer when including resources that has `$` in its path. + ## \[1.5.3] ### Enhancements diff --git a/tooling/bundler/Cargo.toml b/tooling/bundler/Cargo.toml index 4dcc69886..8047132a8 100644 --- a/tooling/bundler/Cargo.toml +++ b/tooling/bundler/Cargo.toml @@ -2,7 +2,7 @@ workspace = { } [package] name = "tauri-bundler" -version = "1.5.3" +version = "1.5.4" authors = [ "George Burton ", "Tauri Programme within The Commons Conservancy" diff --git a/tooling/cli/CHANGELOG.md b/tooling/cli/CHANGELOG.md index ca78ffd4f..fd10e8641 100644 --- a/tooling/cli/CHANGELOG.md +++ b/tooling/cli/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[1.5.14] + +### Dependencies + +- Upgraded to `tauri-bundler@1.5.4` + ## \[1.5.13] ### Dependencies diff --git a/tooling/cli/Cargo.lock b/tooling/cli/Cargo.lock index 9c6599309..727ec3451 100644 --- a/tooling/cli/Cargo.lock +++ b/tooling/cli/Cargo.lock @@ -3349,7 +3349,7 @@ dependencies = [ [[package]] name = "tauri-bundler" -version = "1.5.3" +version = "1.5.4" dependencies = [ "anyhow", "ar", @@ -3389,7 +3389,7 @@ dependencies = [ [[package]] name = "tauri-cli" -version = "1.5.13" +version = "1.5.14" dependencies = [ "anyhow", "axum", diff --git a/tooling/cli/Cargo.toml b/tooling/cli/Cargo.toml index 702604167..847beafa0 100644 --- a/tooling/cli/Cargo.toml +++ b/tooling/cli/Cargo.toml @@ -3,7 +3,7 @@ members = [ "node" ] [package] name = "tauri-cli" -version = "1.5.13" +version = "1.5.14" authors = [ "Tauri Programme within The Commons Conservancy" ] edition = "2021" rust-version = "1.70" @@ -42,7 +42,7 @@ path = "src/main.rs" clap_complete = "4" clap = { version = "4.4", features = [ "derive" ] } anyhow = "1.0" -tauri-bundler = { version = "1.5.3", path = "../bundler", default-features = false } +tauri-bundler = { version = "1.5.4", path = "../bundler", default-features = false } colored = "2.0" once_cell = "1" serde = { version = "1.0", features = [ "derive" ] } diff --git a/tooling/cli/metadata.json b/tooling/cli/metadata.json index 450c09f47..6ad751a38 100644 --- a/tooling/cli/metadata.json +++ b/tooling/cli/metadata.json @@ -1,8 +1,8 @@ { "cli.js": { - "version": "1.5.13", + "version": "1.5.14", "node": ">= 10.0.0" }, - "tauri": "1.6.3", + "tauri": "1.6.4", "tauri-build": "1.5.2" } diff --git a/tooling/cli/node/CHANGELOG.md b/tooling/cli/node/CHANGELOG.md index 0910d863d..71d1648c2 100644 --- a/tooling/cli/node/CHANGELOG.md +++ b/tooling/cli/node/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[1.5.14] + +### Dependencies + +- Upgraded to `tauri-cli@1.5.14` + ## \[1.5.13] ### Dependencies diff --git a/tooling/cli/node/package.json b/tooling/cli/node/package.json index efc45f561..b2862786a 100644 --- a/tooling/cli/node/package.json +++ b/tooling/cli/node/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/cli", - "version": "1.5.13", + "version": "1.5.14", "description": "Command line interface for building Tauri apps", "funding": { "type": "opencollective",