Apply Version Updates From Current Changes (#3975)

Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
This commit is contained in:
github-actions[bot] 2022-04-26 20:40:24 -03:00 committed by GitHub
parent 62cdb2b307
commit cf22f4ca5d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 22 additions and 4 deletions

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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