@tauri-apps/cli 2.0.0-rc.8 → 2.0.0-rc.9
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.
- package/CHANGELOG.md +10 -0
- package/config.schema.json +1 -1
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## \[2.0.0-rc.9]
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
- [`5af1f5dec`](https://www.github.com/tauri-apps/tauri/commit/5af1f5dec1bb98f335169df8c5e30c19a24cae07) ([#10851](https://www.github.com/tauri-apps/tauri/pull/10851) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) Fixes `ios build` failing to build iOS app in CI when using an API key for automatic signing.
|
|
8
|
+
|
|
9
|
+
### Dependencies
|
|
10
|
+
|
|
11
|
+
- Upgraded to `tauri-cli@2.0.0-rc.9`
|
|
12
|
+
|
|
3
13
|
## \[2.0.0-rc.8]
|
|
4
14
|
|
|
5
15
|
### New Features
|
package/config.schema.json
CHANGED
|
@@ -1546,7 +1546,7 @@
|
|
|
1546
1546
|
]
|
|
1547
1547
|
},
|
|
1548
1548
|
"publisher": {
|
|
1549
|
-
"description": "The application's publisher. Defaults to the second element in the identifier string.\n Currently maps to the Manufacturer property of the Windows Installer.",
|
|
1549
|
+
"description": "The application's publisher. Defaults to the second element in the identifier string.\n\n Currently maps to the Manufacturer property of the Windows Installer\n and the Maintainer field of debian packages if the Cargo.toml does not have the authors field.",
|
|
1550
1550
|
"type": [
|
|
1551
1551
|
"string",
|
|
1552
1552
|
"null"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tauri-apps/cli",
|
|
3
|
-
"version": "2.0.0-rc.
|
|
3
|
+
"version": "2.0.0-rc.9",
|
|
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.
|
|
67
|
-
"@tauri-apps/cli-darwin-x64": "2.0.0-rc.
|
|
68
|
-
"@tauri-apps/cli-linux-x64-gnu": "2.0.0-rc.
|
|
69
|
-
"@tauri-apps/cli-darwin-arm64": "2.0.0-rc.
|
|
70
|
-
"@tauri-apps/cli-linux-arm64-gnu": "2.0.0-rc.
|
|
71
|
-
"@tauri-apps/cli-linux-arm64-musl": "2.0.0-rc.
|
|
72
|
-
"@tauri-apps/cli-linux-arm-gnueabihf": "2.0.0-rc.
|
|
73
|
-
"@tauri-apps/cli-linux-x64-musl": "2.0.0-rc.
|
|
74
|
-
"@tauri-apps/cli-win32-ia32-msvc": "2.0.0-rc.
|
|
75
|
-
"@tauri-apps/cli-win32-arm64-msvc": "2.0.0-rc.
|
|
66
|
+
"@tauri-apps/cli-win32-x64-msvc": "2.0.0-rc.9",
|
|
67
|
+
"@tauri-apps/cli-darwin-x64": "2.0.0-rc.9",
|
|
68
|
+
"@tauri-apps/cli-linux-x64-gnu": "2.0.0-rc.9",
|
|
69
|
+
"@tauri-apps/cli-darwin-arm64": "2.0.0-rc.9",
|
|
70
|
+
"@tauri-apps/cli-linux-arm64-gnu": "2.0.0-rc.9",
|
|
71
|
+
"@tauri-apps/cli-linux-arm64-musl": "2.0.0-rc.9",
|
|
72
|
+
"@tauri-apps/cli-linux-arm-gnueabihf": "2.0.0-rc.9",
|
|
73
|
+
"@tauri-apps/cli-linux-x64-musl": "2.0.0-rc.9",
|
|
74
|
+
"@tauri-apps/cli-win32-ia32-msvc": "2.0.0-rc.9",
|
|
75
|
+
"@tauri-apps/cli-win32-arm64-msvc": "2.0.0-rc.9"
|
|
76
76
|
}
|
|
77
77
|
}
|