@tauri-apps/cli 2.0.0-rc.14 → 2.0.0-rc.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/package.json +11 -11
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## \[2.0.0-rc.15]
4
+
5
+ ### Enhancements
6
+
7
+ - [`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.
8
+
9
+ ### Bug Fixes
10
+
11
+ - [`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`
12
+
13
+ ### Dependencies
14
+
15
+ - Upgraded to `tauri-cli@2.0.0-rc.15`
16
+
3
17
  ## \[2.0.0-rc.14]
4
18
 
5
19
  ### Enhancements
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tauri-apps/cli",
3
- "version": "2.0.0-rc.14",
3
+ "version": "2.0.0-rc.15",
4
4
  "description": "Command line interface for building Tauri apps",
5
5
  "funding": {
6
6
  "type": "opencollective",
@@ -63,15 +63,15 @@
63
63
  "tauri": "node ./tauri.js"
64
64
  },
65
65
  "optionalDependencies": {
66
- "@tauri-apps/cli-win32-x64-msvc": "2.0.0-rc.14",
67
- "@tauri-apps/cli-darwin-x64": "2.0.0-rc.14",
68
- "@tauri-apps/cli-linux-x64-gnu": "2.0.0-rc.14",
69
- "@tauri-apps/cli-darwin-arm64": "2.0.0-rc.14",
70
- "@tauri-apps/cli-linux-arm64-gnu": "2.0.0-rc.14",
71
- "@tauri-apps/cli-linux-arm64-musl": "2.0.0-rc.14",
72
- "@tauri-apps/cli-linux-arm-gnueabihf": "2.0.0-rc.14",
73
- "@tauri-apps/cli-linux-x64-musl": "2.0.0-rc.14",
74
- "@tauri-apps/cli-win32-ia32-msvc": "2.0.0-rc.14",
75
- "@tauri-apps/cli-win32-arm64-msvc": "2.0.0-rc.14"
66
+ "@tauri-apps/cli-win32-x64-msvc": "2.0.0-rc.15",
67
+ "@tauri-apps/cli-darwin-x64": "2.0.0-rc.15",
68
+ "@tauri-apps/cli-linux-x64-gnu": "2.0.0-rc.15",
69
+ "@tauri-apps/cli-darwin-arm64": "2.0.0-rc.15",
70
+ "@tauri-apps/cli-linux-arm64-gnu": "2.0.0-rc.15",
71
+ "@tauri-apps/cli-linux-arm64-musl": "2.0.0-rc.15",
72
+ "@tauri-apps/cli-linux-arm-gnueabihf": "2.0.0-rc.15",
73
+ "@tauri-apps/cli-linux-x64-musl": "2.0.0-rc.15",
74
+ "@tauri-apps/cli-win32-ia32-msvc": "2.0.0-rc.15",
75
+ "@tauri-apps/cli-win32-arm64-msvc": "2.0.0-rc.15"
76
76
  }
77
77
  }