@tauri-apps/cli 2.0.0-rc.2 → 2.0.0-rc.3

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 (3) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/package.json +11 -11
  3. package/schema.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## \[2.0.0-rc.3]
4
+
5
+ ### Enhancements
6
+
7
+ - [`5f56cb0a8`](https://www.github.com/tauri-apps/tauri/commit/5f56cb0a8b9c6f695bc6439a8db997c98b3a3997) ([#10507](https://www.github.com/tauri-apps/tauri/pull/10507) by [@FabianLars](https://www.github.com/tauri-apps/tauri/../../FabianLars)) Update gradle to 8.9 and the gradle android plugin to 8.5.1 in the android templates (requires latest Android Studio). This should add support for Java 21 but Java 17 keeps being the recommended version.
8
+
9
+ ### Bug Fixes
10
+
11
+ - [`f5dfc0280`](https://www.github.com/tauri-apps/tauri/commit/f5dfc02800dbd3bdee671b032454c49ac7102fb4) ([#10533](https://www.github.com/tauri-apps/tauri/pull/10533) by [@FabianLars](https://www.github.com/tauri-apps/tauri/../../FabianLars)) Fixed an issue causing `tauri ios init` to fail if `iOS.minimumSystemVersion` was not configured explicitly.
12
+
13
+ ### Dependencies
14
+
15
+ - Upgraded to `tauri-cli@2.0.0-rc.3`
16
+
3
17
  ## \[2.0.0-rc.2]
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.2",
3
+ "version": "2.0.0-rc.3",
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-rc.2",
72
- "@tauri-apps/cli-darwin-x64": "2.0.0-rc.2",
73
- "@tauri-apps/cli-linux-x64-gnu": "2.0.0-rc.2",
74
- "@tauri-apps/cli-darwin-arm64": "2.0.0-rc.2",
75
- "@tauri-apps/cli-linux-arm64-gnu": "2.0.0-rc.2",
76
- "@tauri-apps/cli-linux-arm64-musl": "2.0.0-rc.2",
77
- "@tauri-apps/cli-linux-arm-gnueabihf": "2.0.0-rc.2",
78
- "@tauri-apps/cli-linux-x64-musl": "2.0.0-rc.2",
79
- "@tauri-apps/cli-win32-ia32-msvc": "2.0.0-rc.2",
80
- "@tauri-apps/cli-win32-arm64-msvc": "2.0.0-rc.2"
71
+ "@tauri-apps/cli-win32-x64-msvc": "2.0.0-rc.3",
72
+ "@tauri-apps/cli-darwin-x64": "2.0.0-rc.3",
73
+ "@tauri-apps/cli-linux-x64-gnu": "2.0.0-rc.3",
74
+ "@tauri-apps/cli-darwin-arm64": "2.0.0-rc.3",
75
+ "@tauri-apps/cli-linux-arm64-gnu": "2.0.0-rc.3",
76
+ "@tauri-apps/cli-linux-arm64-musl": "2.0.0-rc.3",
77
+ "@tauri-apps/cli-linux-arm-gnueabihf": "2.0.0-rc.3",
78
+ "@tauri-apps/cli-linux-x64-musl": "2.0.0-rc.3",
79
+ "@tauri-apps/cli-win32-ia32-msvc": "2.0.0-rc.3",
80
+ "@tauri-apps/cli-win32-arm64-msvc": "2.0.0-rc.3"
81
81
  }
82
82
  }
package/schema.json CHANGED
@@ -75,7 +75,7 @@
75
75
  },
76
76
  "createUpdaterArtifacts": false,
77
77
  "iOS": {
78
- "minimumSystemVersion": ""
78
+ "minimumSystemVersion": "13.0"
79
79
  },
80
80
  "icon": [],
81
81
  "linux": {
@@ -427,7 +427,7 @@
427
427
  ]
428
428
  },
429
429
  "shadow": {
430
- "description": "Whether or not the window has shadow.\n\n ## Platform-specific\n\n - **Windows:**\n - `false` has no effect on decorated window, shadow are always ON.\n - `true` will make ndecorated window have a 1px white border,\n and on Windows 11, it will have a rounded corners.\n - **Linux:** Unsupported.",
430
+ "description": "Whether or not the window has shadow.\n\n ## Platform-specific\n\n - **Windows:**\n - `false` has no effect on decorated window, shadow are always ON.\n - `true` will make undecorated window have a 1px white border,\n and on Windows 11, it will have a rounded corners.\n - **Linux:** Unsupported.",
431
431
  "default": true,
432
432
  "type": "boolean"
433
433
  },
@@ -1715,7 +1715,7 @@
1715
1715
  "iOS": {
1716
1716
  "description": "iOS configuration.",
1717
1717
  "default": {
1718
- "minimumSystemVersion": ""
1718
+ "minimumSystemVersion": "13.0"
1719
1719
  },
1720
1720
  "allOf": [
1721
1721
  {