From cf22f4ca5db7de3c940b0530e82c7faac32206ba Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 26 Apr 2022 20:40:24 -0300 Subject: [PATCH] Apply Version Updates From Current Changes (#3975) Co-authored-by: lucasfernog --- .changes/pre.json | 4 ++++ core/tauri-build/CHANGELOG.md | 5 +++++ core/tauri-build/Cargo.toml | 2 +- core/tauri/CHANGELOG.md | 9 +++++++++ core/tauri/Cargo.toml | 2 +- tooling/cli/metadata.json | 4 ++-- 6 files changed, 22 insertions(+), 4 deletions(-) diff --git a/.changes/pre.json b/.changes/pre.json index 9e170107e..84ac4050b 100644 --- a/.changes/pre.json +++ b/.changes/pre.json @@ -42,9 +42,11 @@ ".changes/async-runtime-refactor.md", ".changes/async-runtime-set.md", ".changes/async-runtime-spawn-blocking.md", + ".changes/ayatana-feature-refactor.md", ".changes/ayatana-tray.md", ".changes/before-script-envs.md", ".changes/binary-size-perf.md", + ".changes/build-rerun-if-config-var-change.md", ".changes/build-rerun-if-resource-sidecar-change.md", ".changes/build-specify-win-sdk.md", ".changes/builder-create-window-result.md", @@ -118,6 +120,7 @@ ".changes/error-send-sync.md", ".changes/exit-loop-destroyed.md", ".changes/expose-escape-json-string.md", + ".changes/expose-global-shortcut.md", ".changes/extract-file-breaking.change.md", ".changes/extract-files-breaking-change.md", ".changes/extract-performance.md", @@ -160,6 +163,7 @@ ".changes/fix-resize-with-devtools.md", ".changes/fix-runtime-traits-requirements.md", ".changes/fix-safe-block-on.md", + ".changes/fix-tauri-docsrs.md", ".changes/fix-tray-command.md", ".changes/fix-tray-menu-ids-update.md", ".changes/fix-tray-remove-windows.md", diff --git a/core/tauri-build/CHANGELOG.md b/core/tauri-build/CHANGELOG.md index 89d5183c6..fd94befec 100644 --- a/core/tauri-build/CHANGELOG.md +++ b/core/tauri-build/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## \[1.0.0-rc.7] + +- Rerun build script if `TAURI_CONFIG` environment variable change. + - [7ae9e252](https://www.github.com/tauri-apps/tauri/commit/7ae9e25262376529637cd3b47b1cf84809efaec9) fix(tauri-build): rerun if `TAURI_CONFIG` env var changes on 2022-04-26 + ## \[1.0.0-rc.6] - Copy system tray icon resource to the target directory on Linux. diff --git a/core/tauri-build/Cargo.toml b/core/tauri-build/Cargo.toml index c1220fb4e..985aa4524 100644 --- a/core/tauri-build/Cargo.toml +++ b/core/tauri-build/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri-build" -version = "1.0.0-rc.6" +version = "1.0.0-rc.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 22c5682f7..95610b55e 100644 --- a/core/tauri/CHANGELOG.md +++ b/core/tauri/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## \[1.0.0-rc.8] + +- **Breaking change:** Removed the `ayatana-tray` from the default features. You must select one of `ayatana-tray` and `gtk-tray` to use system tray on Linux. + - [62cdb2b3](https://www.github.com/tauri-apps/tauri/commit/62cdb2b307534cf1cb69fdb8688f7c0f3176f41b) refactor(tauri): remove ayatana-tray from the default features ([#3976](https://www.github.com/tauri-apps/tauri/pull/3976)) on 2022-04-26 +- Re-export the `GlobalShortcutManager` when the `global-shortcut` feature is enabled. + - [62cdb2b3](https://www.github.com/tauri-apps/tauri/commit/62cdb2b307534cf1cb69fdb8688f7c0f3176f41b) refactor(tauri): remove ayatana-tray from the default features ([#3976](https://www.github.com/tauri-apps/tauri/pull/3976)) on 2022-04-26 +- Fixes `docs.rs` documentation build. + - [dd94917b](https://www.github.com/tauri-apps/tauri/commit/dd94917b619f22849a7487805315c5306e4847b8) fix(tauri): docs.rs build error ([#3974](https://www.github.com/tauri-apps/tauri/pull/3974)) on 2022-04-26 + ## \[1.0.0-rc.7] - **Breaking change:** Removed `tauri::api::file::ArchiveFormat::Plain`. diff --git a/core/tauri/Cargo.toml b/core/tauri/Cargo.toml index 11c148316..1d4055c6c 100644 --- a/core/tauri/Cargo.toml +++ b/core/tauri/Cargo.toml @@ -16,7 +16,7 @@ license = "Apache-2.0 OR MIT" name = "tauri" readme = "README.md" repository = "https://github.com/tauri-apps/tauri" -version = "1.0.0-rc.7" +version = "1.0.0-rc.8" [package.metadata.docs.rs] no-default-features = true diff --git a/tooling/cli/metadata.json b/tooling/cli/metadata.json index dcd552bd0..8594d123f 100644 --- a/tooling/cli/metadata.json +++ b/tooling/cli/metadata.json @@ -3,6 +3,6 @@ "version": "1.0.0-rc.9", "node": ">= 10" }, - "tauri": "1.0.0-rc.7", - "tauri-build": "1.0.0-rc.6" + "tauri": "1.0.0-rc.8", + "tauri-build": "1.0.0-rc.7" }