@tauri-apps/cli 2.0.0-alpha.4 → 2.0.0-alpha.5

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 +8 -0
  2. package/package.json +10 -10
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## \[2.0.0-alpha.5]
4
+
5
+ - Fixes the iOS project script to build the Rust library.
6
+ - [6e3e4c22](https://www.github.com/tauri-apps/tauri/commit/6e3e4c22be51500bec7856d90dcb2e40ef7fe1b4) fix(cli): use correct variable on script to build Rust iOS code ([#6581](https://www.github.com/tauri-apps/tauri/pull/6581)) on 2023-03-29
7
+ - Fix `tauri android build/dev` crashing when used with standalone `pnpm` executable on Windows.
8
+ - [39df2c98](https://www.github.com/tauri-apps/tauri/commit/39df2c982e5e2ee8617b40f829a2f2e4abfce412) fix(cli/android): fallback to `${program}.cmd` ([#6576](https://www.github.com/tauri-apps/tauri/pull/6576)) on 2023-03-29
9
+ - [6b469c40](https://www.github.com/tauri-apps/tauri/commit/6b469c40c6244ba773d7478adbb41db6fdc72822) chore(changes): adjust change file for Android script execution fix on 2023-03-29
10
+
3
11
  ## \[2.0.0-alpha.4]
4
12
 
5
13
  - Fix android project build crashing when using `pnpm` caused by extra `--`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tauri-apps/cli",
3
- "version": "2.0.0-alpha.4",
3
+ "version": "2.0.0-alpha.5",
4
4
  "description": "Command line interface for building Tauri apps",
5
5
  "funding": {
6
6
  "type": "opencollective",
@@ -67,14 +67,14 @@
67
67
  "format:check": "prettier --check ./package.json ./tauri.js"
68
68
  },
69
69
  "optionalDependencies": {
70
- "@tauri-apps/cli-win32-x64-msvc": "2.0.0-alpha.4",
71
- "@tauri-apps/cli-darwin-x64": "2.0.0-alpha.4",
72
- "@tauri-apps/cli-linux-x64-gnu": "2.0.0-alpha.4",
73
- "@tauri-apps/cli-darwin-arm64": "2.0.0-alpha.4",
74
- "@tauri-apps/cli-linux-arm64-gnu": "2.0.0-alpha.4",
75
- "@tauri-apps/cli-linux-arm64-musl": "2.0.0-alpha.4",
76
- "@tauri-apps/cli-linux-arm-gnueabihf": "2.0.0-alpha.4",
77
- "@tauri-apps/cli-linux-x64-musl": "2.0.0-alpha.4",
78
- "@tauri-apps/cli-win32-ia32-msvc": "2.0.0-alpha.4"
70
+ "@tauri-apps/cli-win32-x64-msvc": "2.0.0-alpha.5",
71
+ "@tauri-apps/cli-darwin-x64": "2.0.0-alpha.5",
72
+ "@tauri-apps/cli-linux-x64-gnu": "2.0.0-alpha.5",
73
+ "@tauri-apps/cli-darwin-arm64": "2.0.0-alpha.5",
74
+ "@tauri-apps/cli-linux-arm64-gnu": "2.0.0-alpha.5",
75
+ "@tauri-apps/cli-linux-arm64-musl": "2.0.0-alpha.5",
76
+ "@tauri-apps/cli-linux-arm-gnueabihf": "2.0.0-alpha.5",
77
+ "@tauri-apps/cli-linux-x64-musl": "2.0.0-alpha.5",
78
+ "@tauri-apps/cli-win32-ia32-msvc": "2.0.0-alpha.5"
79
79
  }
80
80
  }