@tauri-apps/cli 1.0.1 → 1.0.2
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 +5 -0
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## \[1.0.2]
|
|
4
|
+
|
|
5
|
+
- Fixes a crash on the `signer sign` command.
|
|
6
|
+
- [8e808fec](https://www.github.com/tauri-apps/tauri/commit/8e808fece95f2e506acf2c446d37b9913fd67d50) fix(cli.rs): conflicts_with arg doesn't exist closes ([#4538](https://www.github.com/tauri-apps/tauri/pull/4538)) on 2022-06-30
|
|
7
|
+
|
|
3
8
|
## \[1.0.1]
|
|
4
9
|
|
|
5
10
|
- No longer adds the `pkg-config` dependency to `.deb` packages when the `systemTray` is used.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tauri-apps/cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Command line interface for building Tauri apps",
|
|
5
5
|
"funding": {
|
|
6
6
|
"type": "opencollective",
|
|
@@ -64,14 +64,14 @@
|
|
|
64
64
|
"format:check": "prettier --check ./package.json ./tauri.js"
|
|
65
65
|
},
|
|
66
66
|
"optionalDependencies": {
|
|
67
|
-
"@tauri-apps/cli-win32-x64-msvc": "1.0.
|
|
68
|
-
"@tauri-apps/cli-darwin-x64": "1.0.
|
|
69
|
-
"@tauri-apps/cli-linux-x64-gnu": "1.0.
|
|
70
|
-
"@tauri-apps/cli-darwin-arm64": "1.0.
|
|
71
|
-
"@tauri-apps/cli-linux-arm64-gnu": "1.0.
|
|
72
|
-
"@tauri-apps/cli-linux-arm64-musl": "1.0.
|
|
73
|
-
"@tauri-apps/cli-linux-arm-gnueabihf": "1.0.
|
|
74
|
-
"@tauri-apps/cli-linux-x64-musl": "1.0.
|
|
75
|
-
"@tauri-apps/cli-win32-ia32-msvc": "1.0.
|
|
67
|
+
"@tauri-apps/cli-win32-x64-msvc": "1.0.2",
|
|
68
|
+
"@tauri-apps/cli-darwin-x64": "1.0.2",
|
|
69
|
+
"@tauri-apps/cli-linux-x64-gnu": "1.0.2",
|
|
70
|
+
"@tauri-apps/cli-darwin-arm64": "1.0.2",
|
|
71
|
+
"@tauri-apps/cli-linux-arm64-gnu": "1.0.2",
|
|
72
|
+
"@tauri-apps/cli-linux-arm64-musl": "1.0.2",
|
|
73
|
+
"@tauri-apps/cli-linux-arm-gnueabihf": "1.0.2",
|
|
74
|
+
"@tauri-apps/cli-linux-x64-musl": "1.0.2",
|
|
75
|
+
"@tauri-apps/cli-win32-ia32-msvc": "1.0.2"
|
|
76
76
|
}
|
|
77
77
|
}
|