@tauri-apps/cli 2.0.0-rc.5 → 2.0.0-rc.6
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 +14 -0
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## \[2.0.0-rc.6]
|
|
4
|
+
|
|
5
|
+
### New Features
|
|
6
|
+
|
|
7
|
+
- [`da381e07f`](https://www.github.com/tauri-apps/tauri/commit/da381e07f3770988fe6d0859a02331b87cc6723f) ([#10696](https://www.github.com/tauri-apps/tauri/pull/10696) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) Inject configured resources on mobile apps.
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
- [`1a60822a4`](https://www.github.com/tauri-apps/tauri/commit/1a60822a4220b6dbb1ad7295a2e37d6c3004edad) ([#10699](https://www.github.com/tauri-apps/tauri/pull/10699) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) Changed the `add` command to use a version requirement that matches the CLI's stable and prerelease numbers.
|
|
12
|
+
|
|
13
|
+
### Dependencies
|
|
14
|
+
|
|
15
|
+
- Upgraded to `tauri-cli@2.0.0-rc.6`
|
|
16
|
+
|
|
3
17
|
## \[2.0.0-rc.5]
|
|
4
18
|
|
|
5
19
|
### New Features
|
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.6",
|
|
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.6",
|
|
67
|
+
"@tauri-apps/cli-darwin-x64": "2.0.0-rc.6",
|
|
68
|
+
"@tauri-apps/cli-linux-x64-gnu": "2.0.0-rc.6",
|
|
69
|
+
"@tauri-apps/cli-darwin-arm64": "2.0.0-rc.6",
|
|
70
|
+
"@tauri-apps/cli-linux-arm64-gnu": "2.0.0-rc.6",
|
|
71
|
+
"@tauri-apps/cli-linux-arm64-musl": "2.0.0-rc.6",
|
|
72
|
+
"@tauri-apps/cli-linux-arm-gnueabihf": "2.0.0-rc.6",
|
|
73
|
+
"@tauri-apps/cli-linux-x64-musl": "2.0.0-rc.6",
|
|
74
|
+
"@tauri-apps/cli-win32-ia32-msvc": "2.0.0-rc.6",
|
|
75
|
+
"@tauri-apps/cli-win32-arm64-msvc": "2.0.0-rc.6"
|
|
76
76
|
}
|
|
77
77
|
}
|