소스 검색

Apply Version Updates From Current Changes (#3975)

Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
github-actions[bot] 3 년 전
부모
커밋
cf22f4ca5d
6개의 변경된 파일22개의 추가작업 그리고 4개의 파일을 삭제
  1. 4 0
      .changes/pre.json
  2. 5 0
      core/tauri-build/CHANGELOG.md
  3. 1 1
      core/tauri-build/Cargo.toml
  4. 9 0
      core/tauri/CHANGELOG.md
  5. 1 1
      core/tauri/Cargo.toml
  6. 2 2
      tooling/cli/metadata.json

+ 4 - 0
.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",

+ 5 - 0
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.

+ 1 - 1
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"

+ 9 - 0
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`.

+ 1 - 1
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

+ 2 - 2
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"
 }