Преглед на файлове

Apply Version Updates From Current Changes (#11010)

Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
github-actions[bot] преди 10 месеца
родител
ревизия
63264a2914

+ 2 - 0
.changes/pre.json

@@ -28,6 +28,7 @@
     ".changes/cli-add-no-fmt.md",
     ".changes/cli-android-template-androidtv.md",
     ".changes/cli-desktop-port-exposure.md",
+    ".changes/cli-handle-main-binary.md",
     ".changes/cli-info-include-arch.md",
     ".changes/cli-info-plugins.md",
     ".changes/cli-make-app-dir-consistent.md",
@@ -85,6 +86,7 @@
     ".changes/ios-invoke-response-null.md",
     ".changes/isolation-main-frame-origin.md",
     ".changes/linux-option-gtk-app-id.md",
+    ".changes/main_binary_name-exe.md",
     ".changes/main_binary_name.md",
     ".changes/maintainer-fallback.md",
     ".changes/migrate-plugins.md",

+ 2 - 2
Cargo.lock

@@ -7352,7 +7352,7 @@ dependencies = [
 
 [[package]]
 name = "tauri-bundler"
-version = "2.0.1-rc.11"
+version = "2.0.1-rc.12"
 dependencies = [
  "anyhow",
  "ar",
@@ -7396,7 +7396,7 @@ dependencies = [
 
 [[package]]
 name = "tauri-cli"
-version = "2.0.0-rc.13"
+version = "2.0.0-rc.15"
 dependencies = [
  "anyhow",
  "ar",

+ 6 - 0
crates/tauri-bundler/CHANGELOG.md

@@ -1,5 +1,11 @@
 # Changelog
 
+## \[2.0.1-rc.12]
+
+### Bug Fixes
+
+- [`94e9d476e`](https://www.github.com/tauri-apps/tauri/commit/94e9d476ef506b1b8c09f55b81620c7839f98086) ([#11011](https://www.github.com/tauri-apps/tauri/pull/11011) by [@amrbashir](https://www.github.com/tauri-apps/tauri/../../amrbashir)) Fix `main_binary_name` in custom wix and nsis templates including `.exe`
+
 ## \[2.0.1-rc.11]
 
 ### New Features

+ 1 - 1
crates/tauri-bundler/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "tauri-bundler"
-version = "2.0.1-rc.11"
+version = "2.0.1-rc.12"
 authors = [
   "George Burton <burtonageo@gmail.com>",
   "Tauri Programme within The Commons Conservancy",

+ 14 - 0
crates/tauri-cli/CHANGELOG.md

@@ -1,5 +1,19 @@
 # Changelog
 
+## \[2.0.0-rc.15]
+
+### Enhancements
+
+- [`5a0e922d4`](https://www.github.com/tauri-apps/tauri/commit/5a0e922d40dc3b7d9a8e3a65ccaf76d09f026cb8) ([#11007](https://www.github.com/tauri-apps/tauri/pull/11007) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) Automatically discover the `src-tauri/src/main.rs` binary when it is not explicitly defined in the Cargo manifest bin array.
+
+### Bug Fixes
+
+- [`94e9d476e`](https://www.github.com/tauri-apps/tauri/commit/94e9d476ef506b1b8c09f55b81620c7839f98086) ([#11011](https://www.github.com/tauri-apps/tauri/pull/11011) by [@amrbashir](https://www.github.com/tauri-apps/tauri/../../amrbashir)) Fix `main_binary_name` in custom wix and nsis templates including `.exe`
+
+### Dependencies
+
+- Upgraded to `tauri-bundler@2.0.1-rc.12`
+
 ## \[2.0.0-rc.13]
 
 ### New Features

+ 2 - 2
crates/tauri-cli/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "tauri-cli"
-version = "2.0.0-rc.13"
+version = "2.0.0-rc.15"
 authors = ["Tauri Programme within The Commons Conservancy"]
 edition = "2021"
 rust-version = "1.71"
@@ -47,7 +47,7 @@ sublime_fuzzy = "0.7"
 clap_complete = "4"
 clap = { version = "4.5", features = ["derive", "env"] }
 anyhow = "1.0"
-tauri-bundler = { version = "2.0.1-rc.11", default-features = false, path = "../tauri-bundler" }
+tauri-bundler = { version = "2.0.1-rc.12", default-features = false, path = "../tauri-bundler" }
 colored = "2.1"
 serde = { version = "1.0", features = ["derive"] }
 serde_json = { version = "1.0", features = ["preserve_order"] }

+ 1 - 1
crates/tauri-cli/metadata-v2.json

@@ -1,6 +1,6 @@
 {
   "cli.js": {
-    "version": "2.0.0-rc.14",
+    "version": "2.0.0-rc.15",
     "node": ">= 10.0.0"
   },
   "tauri": "2.0.0-rc.12",

+ 14 - 0
packages/cli/CHANGELOG.md

@@ -1,5 +1,19 @@
 # Changelog
 
+## \[2.0.0-rc.15]
+
+### Enhancements
+
+- [`5a0e922d4`](https://www.github.com/tauri-apps/tauri/commit/5a0e922d40dc3b7d9a8e3a65ccaf76d09f026cb8) ([#11007](https://www.github.com/tauri-apps/tauri/pull/11007) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) Automatically discover the `src-tauri/src/main.rs` binary when it is not explicitly defined in the Cargo manifest bin array.
+
+### Bug Fixes
+
+- [`94e9d476e`](https://www.github.com/tauri-apps/tauri/commit/94e9d476ef506b1b8c09f55b81620c7839f98086) ([#11011](https://www.github.com/tauri-apps/tauri/pull/11011) by [@amrbashir](https://www.github.com/tauri-apps/tauri/../../amrbashir)) Fix `main_binary_name` in custom wix and nsis templates including `.exe`
+
+### Dependencies
+
+- Upgraded to `tauri-cli@2.0.0-rc.15`
+
 ## \[2.0.0-rc.14]
 
 ### Enhancements

+ 1 - 1
packages/cli/package.json

@@ -1,6 +1,6 @@
 {
   "name": "@tauri-apps/cli",
-  "version": "2.0.0-rc.14",
+  "version": "2.0.0-rc.15",
   "description": "Command line interface for building Tauri apps",
   "funding": {
     "type": "opencollective",