@tauri-apps/cli 2.0.0-alpha.11 → 2.0.0-alpha.13

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 +22 -0
  2. package/package.json +11 -11
package/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # Changelog
2
2
 
3
+ ## \[2.0.0-alpha.13]
4
+
5
+ ### Dependencies
6
+
7
+ - Upgraded to `tauri-cli@2.0.0-alpha.13`
8
+
9
+ ### Breaking Changes
10
+
11
+ - [`4cb51a2d`](https://www.github.com/tauri-apps/tauri/commit/4cb51a2d56cfcae0749062c79ede5236bd8c02c2)([#7779](https://www.github.com/tauri-apps/tauri/pull/7779)) The custom protocol on Windows now uses the `http` scheme instead of `https`.
12
+ - [`974e38b4`](https://www.github.com/tauri-apps/tauri/commit/974e38b4ddc198530aa977ec77d513b76013b9f3)([#7744](https://www.github.com/tauri-apps/tauri/pull/7744)) Renamed the `plugin add` command to `add`.
13
+
14
+ ## \[2.0.0-alpha.12]
15
+
16
+ ### Bug Fixes
17
+
18
+ - [`b75a1210`](https://www.github.com/tauri-apps/tauri/commit/b75a1210bed589187678861d7314ae6279bf7c87)([#7762](https://www.github.com/tauri-apps/tauri/pull/7762)) Fixes a regression on alpha.11 where iOS logs aren't being displayed when using `ios dev` with a real device.
19
+ - [`8faa5a4a`](https://www.github.com/tauri-apps/tauri/commit/8faa5a4a1238a44ca7b54d2084aaed553ac2a1ba)([#7765](https://www.github.com/tauri-apps/tauri/pull/7765)) Ensure asset directory exists on the iOS project.
20
+
21
+ ### Dependencies
22
+
23
+ - Upgraded to `tauri-cli@2.0.0-alpha.12`
24
+
3
25
  ## \[2.0.0-alpha.11]
4
26
 
5
27
  ### New Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tauri-apps/cli",
3
- "version": "2.0.0-alpha.11",
3
+ "version": "2.0.0-alpha.13",
4
4
  "description": "Command line interface for building Tauri apps",
5
5
  "funding": {
6
6
  "type": "opencollective",
@@ -70,15 +70,15 @@
70
70
  },
71
71
  "dependencies": {},
72
72
  "optionalDependencies": {
73
- "@tauri-apps/cli-win32-x64-msvc": "2.0.0-alpha.11",
74
- "@tauri-apps/cli-darwin-x64": "2.0.0-alpha.11",
75
- "@tauri-apps/cli-linux-x64-gnu": "2.0.0-alpha.11",
76
- "@tauri-apps/cli-darwin-arm64": "2.0.0-alpha.11",
77
- "@tauri-apps/cli-linux-arm64-gnu": "2.0.0-alpha.11",
78
- "@tauri-apps/cli-linux-arm64-musl": "2.0.0-alpha.11",
79
- "@tauri-apps/cli-linux-arm-gnueabihf": "2.0.0-alpha.11",
80
- "@tauri-apps/cli-linux-x64-musl": "2.0.0-alpha.11",
81
- "@tauri-apps/cli-win32-ia32-msvc": "2.0.0-alpha.11",
82
- "@tauri-apps/cli-win32-arm64-msvc": "2.0.0-alpha.11"
73
+ "@tauri-apps/cli-win32-x64-msvc": "2.0.0-alpha.13",
74
+ "@tauri-apps/cli-darwin-x64": "2.0.0-alpha.13",
75
+ "@tauri-apps/cli-linux-x64-gnu": "2.0.0-alpha.13",
76
+ "@tauri-apps/cli-darwin-arm64": "2.0.0-alpha.13",
77
+ "@tauri-apps/cli-linux-arm64-gnu": "2.0.0-alpha.13",
78
+ "@tauri-apps/cli-linux-arm64-musl": "2.0.0-alpha.13",
79
+ "@tauri-apps/cli-linux-arm-gnueabihf": "2.0.0-alpha.13",
80
+ "@tauri-apps/cli-linux-x64-musl": "2.0.0-alpha.13",
81
+ "@tauri-apps/cli-win32-ia32-msvc": "2.0.0-alpha.13",
82
+ "@tauri-apps/cli-win32-arm64-msvc": "2.0.0-alpha.13"
83
83
  }
84
84
  }