@tauri-apps/cli 2.0.0-beta.10 → 2.0.0-beta.11

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 +11 -0
  2. package/package.json +11 -11
package/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # Changelog
2
2
 
3
+ ## \[2.0.0-beta.11]
4
+
5
+ ### Enhancements
6
+
7
+ - [`ac76a22f3`](https://www.github.com/tauri-apps/tauri/commit/ac76a22f383028d9bacdedebeb41d3fca5ec9dac)([#9183](https://www.github.com/tauri-apps/tauri/pull/9183)) Allow empty responses for `devUrl`, `beforeDevCommand` and `beforeBuildCommands` questions in `tauri init`.
8
+ - [`b525ddadf`](https://www.github.com/tauri-apps/tauri/commit/b525ddadf7e7588c3e195cf0f821c9862c545d06)([#9237](https://www.github.com/tauri-apps/tauri/pull/9237)) `openssl` is no longer a required dependency on macOS.
9
+
10
+ ### Dependencies
11
+
12
+ - Upgraded to `tauri-cli@2.0.0-beta.11`
13
+
3
14
  ## \[2.0.0-beta.10]
4
15
 
5
16
  ### New Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tauri-apps/cli",
3
- "version": "2.0.0-beta.10",
3
+ "version": "2.0.0-beta.11",
4
4
  "description": "Command line interface for building Tauri apps",
5
5
  "funding": {
6
6
  "type": "opencollective",
@@ -68,15 +68,15 @@
68
68
  "format:check": "prettier --check ./package.json ./tauri.js"
69
69
  },
70
70
  "optionalDependencies": {
71
- "@tauri-apps/cli-win32-x64-msvc": "2.0.0-beta.10",
72
- "@tauri-apps/cli-darwin-x64": "2.0.0-beta.10",
73
- "@tauri-apps/cli-linux-x64-gnu": "2.0.0-beta.10",
74
- "@tauri-apps/cli-darwin-arm64": "2.0.0-beta.10",
75
- "@tauri-apps/cli-linux-arm64-gnu": "2.0.0-beta.10",
76
- "@tauri-apps/cli-linux-arm64-musl": "2.0.0-beta.10",
77
- "@tauri-apps/cli-linux-arm-gnueabihf": "2.0.0-beta.10",
78
- "@tauri-apps/cli-linux-x64-musl": "2.0.0-beta.10",
79
- "@tauri-apps/cli-win32-ia32-msvc": "2.0.0-beta.10",
80
- "@tauri-apps/cli-win32-arm64-msvc": "2.0.0-beta.10"
71
+ "@tauri-apps/cli-win32-x64-msvc": "2.0.0-beta.11",
72
+ "@tauri-apps/cli-darwin-x64": "2.0.0-beta.11",
73
+ "@tauri-apps/cli-linux-x64-gnu": "2.0.0-beta.11",
74
+ "@tauri-apps/cli-darwin-arm64": "2.0.0-beta.11",
75
+ "@tauri-apps/cli-linux-arm64-gnu": "2.0.0-beta.11",
76
+ "@tauri-apps/cli-linux-arm64-musl": "2.0.0-beta.11",
77
+ "@tauri-apps/cli-linux-arm-gnueabihf": "2.0.0-beta.11",
78
+ "@tauri-apps/cli-linux-x64-musl": "2.0.0-beta.11",
79
+ "@tauri-apps/cli-win32-ia32-msvc": "2.0.0-beta.11",
80
+ "@tauri-apps/cli-win32-arm64-msvc": "2.0.0-beta.11"
81
81
  }
82
82
  }