소스 검색

Apply Version Updates From Current Changes (#7612)

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

+ 2 - 0
.changes/pre.json

@@ -10,6 +10,7 @@
     ".changes/android-load-config.md",
     ".changes/android-on-new-intent.md",
     ".changes/android-plugin-command-exception.md",
+    ".changes/api-ipc-refactor.md",
     ".changes/build-android-env-vars.md",
     ".changes/bump-1.3.md",
     ".changes/bundler-remove-dialog-option.md",
@@ -80,6 +81,7 @@
     ".changes/fix-proguard-rules.md",
     ".changes/fix-shell-build.md",
     ".changes/fix-tauri-binary-windows.md",
+    ".changes/fix-tray-icon-validation.md",
     ".changes/fix-xcodescript-lib-path.md",
     ".changes/force-colored-logs.md",
     ".changes/generate-tauri-activity.md",

+ 6 - 0
core/tauri-build/CHANGELOG.md

@@ -1,5 +1,11 @@
 # Changelog
 
+## \[2.0.0-alpha.8]
+
+### Bug Fixes
+
+- [`560b34dd`](https://www.github.com/tauri-apps/tauri/commit/560b34dd2a194ad62db09b3e9e41a2cfff4e5710)([#7610](https://www.github.com/tauri-apps/tauri/pull/7610)) Skip validation of the `tray-icon` feature flag.
+
 ## \[2.0.0-alpha.7]
 
 ### New Features

+ 1 - 1
core/tauri-build/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "tauri-build"
-version = "2.0.0-alpha.7"
+version = "2.0.0-alpha.8"
 description = "build time code to pair with https://crates.io/crates/tauri"
 exclude = [ "CHANGELOG.md", "/target" ]
 readme = "README.md"

+ 1 - 1
core/tauri/Cargo.toml

@@ -104,7 +104,7 @@ swift-rs = "1.0.5"
 [build-dependencies]
 heck = "0.4"
 once_cell = "1"
-tauri-build = { path = "../tauri-build/", version = "2.0.0-alpha.7" }
+tauri-build = { path = "../tauri-build/", version = "2.0.0-alpha.8" }
 
 [dev-dependencies]
 proptest = "1.2.0"

+ 6 - 0
tooling/api/CHANGELOG.md

@@ -1,5 +1,11 @@
 # Changelog
 
+## \[2.0.0-alpha.6]
+
+### New Features
+
+- [`4af5c5a8`](https://www.github.com/tauri-apps/tauri/commit/4af5c5a8293263c16f8a65e8d232f2de52f41701)([#7170](https://www.github.com/tauri-apps/tauri/pull/7170)) Change the IPC call to align with the new format for the custom protocol based API.
+
 ## \[2.0.0-alpha.5]
 
 ### New Features

+ 1 - 1
tooling/api/package.json

@@ -1,6 +1,6 @@
 {
   "name": "@tauri-apps/api",
-  "version": "2.0.0-alpha.5",
+  "version": "2.0.0-alpha.6",
   "description": "Tauri API definitions",
   "type": "module",
   "funding": {

+ 1 - 1
tooling/cli/metadata-v2.json

@@ -4,5 +4,5 @@
     "node": ">= 10.0.0"
   },
   "tauri": "2.0.0-alpha.11",
-  "tauri-build": "2.0.0-alpha.7"
+  "tauri-build": "2.0.0-alpha.8"
 }