@tauri-apps/cli 2.0.0-rc.10 → 2.0.0-rc.12

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 +20 -0
  2. package/package.json +11 -11
package/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # Changelog
2
2
 
3
+ ## \[2.0.0-rc.12]
4
+
5
+ ### Dependencies
6
+
7
+ - Upgraded to `tauri-cli@2.0.0-rc.11`
8
+
9
+ ## \[2.0.0-rc.11]
10
+
11
+ ### Enhancements
12
+
13
+ - [`9c9644d15`](https://www.github.com/tauri-apps/tauri/commit/9c9644d155818d9efcad65b60aa985a59e767922) ([#10845](https://www.github.com/tauri-apps/tauri/pull/10845) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) Enhance iOS library validation, checking libs built with link time optimization.
14
+
15
+ ### Bug Fixes
16
+
17
+ - [`b42683592`](https://www.github.com/tauri-apps/tauri/commit/b42683592d446f25c2005b59e9e3ec551175906d) ([#10847](https://www.github.com/tauri-apps/tauri/pull/10847) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) Fixes `ios build --target [aarch64-sim | x86_64]` failing to generate the app bundle for the iOS simulator.
18
+
19
+ ### Dependencies
20
+
21
+ - Upgraded to `tauri-cli@2.0.0-rc.10`
22
+
3
23
  ## \[2.0.0-rc.10]
4
24
 
5
25
  ### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tauri-apps/cli",
3
- "version": "2.0.0-rc.10",
3
+ "version": "2.0.0-rc.12",
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.10",
67
- "@tauri-apps/cli-darwin-x64": "2.0.0-rc.10",
68
- "@tauri-apps/cli-linux-x64-gnu": "2.0.0-rc.10",
69
- "@tauri-apps/cli-darwin-arm64": "2.0.0-rc.10",
70
- "@tauri-apps/cli-linux-arm64-gnu": "2.0.0-rc.10",
71
- "@tauri-apps/cli-linux-arm64-musl": "2.0.0-rc.10",
72
- "@tauri-apps/cli-linux-arm-gnueabihf": "2.0.0-rc.10",
73
- "@tauri-apps/cli-linux-x64-musl": "2.0.0-rc.10",
74
- "@tauri-apps/cli-win32-ia32-msvc": "2.0.0-rc.10",
75
- "@tauri-apps/cli-win32-arm64-msvc": "2.0.0-rc.10"
66
+ "@tauri-apps/cli-win32-x64-msvc": "2.0.0-rc.12",
67
+ "@tauri-apps/cli-darwin-x64": "2.0.0-rc.12",
68
+ "@tauri-apps/cli-linux-x64-gnu": "2.0.0-rc.12",
69
+ "@tauri-apps/cli-darwin-arm64": "2.0.0-rc.12",
70
+ "@tauri-apps/cli-linux-arm64-gnu": "2.0.0-rc.12",
71
+ "@tauri-apps/cli-linux-arm64-musl": "2.0.0-rc.12",
72
+ "@tauri-apps/cli-linux-arm-gnueabihf": "2.0.0-rc.12",
73
+ "@tauri-apps/cli-linux-x64-musl": "2.0.0-rc.12",
74
+ "@tauri-apps/cli-win32-ia32-msvc": "2.0.0-rc.12",
75
+ "@tauri-apps/cli-win32-arm64-msvc": "2.0.0-rc.12"
76
76
  }
77
77
  }