mirror of
https://github.com/tauri-apps/tauri.git
synced 2026-02-06 15:26:54 +00:00
feat(cli): increase iOS deployment target to 14.0 (#13997)
* feat(cli): increase iOS deployment target to 14.0 closes https://github.com/tauri-apps/plugins-workspace/issues/1876 ref https://github.com/tauri-apps/tauri-docs/pull/3455 * fix tests
This commit is contained in:
parent
d6d5f37077
commit
0c402bfb6b
7
.changes/increase-target-ios.md
Normal file
7
.changes/increase-target-ios.md
Normal file
@ -0,0 +1,7 @@
|
||||
---
|
||||
"tauri-cli": minor:feat
|
||||
"@tauri-apps/cli": minor:feat
|
||||
"tauri-utils": minor:feat
|
||||
---
|
||||
|
||||
Increase default iOS deployment target iOS to 14.0.
|
||||
@ -88,7 +88,7 @@
|
||||
},
|
||||
"createUpdaterArtifacts": false,
|
||||
"iOS": {
|
||||
"minimumSystemVersion": "13.0"
|
||||
"minimumSystemVersion": "14.0"
|
||||
},
|
||||
"icon": [],
|
||||
"linux": {
|
||||
@ -2217,7 +2217,7 @@
|
||||
"iOS": {
|
||||
"description": "iOS configuration.",
|
||||
"default": {
|
||||
"minimumSystemVersion": "13.0"
|
||||
"minimumSystemVersion": "14.0"
|
||||
},
|
||||
"allOf": [
|
||||
{
|
||||
@ -3687,7 +3687,7 @@
|
||||
},
|
||||
"minimumSystemVersion": {
|
||||
"description": "A version string indicating the minimum iOS version that the bundled application supports. Defaults to `13.0`.\n\n Maps to the IPHONEOS_DEPLOYMENT_TARGET value.",
|
||||
"default": "13.0",
|
||||
"default": "14.0",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
|
||||
@ -187,7 +187,7 @@
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
||||
GCC_WARN_UNUSED_FUNCTION = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
|
||||
LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
|
||||
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
|
||||
MTL_FAST_MATH = YES;
|
||||
@ -244,7 +244,7 @@
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
||||
GCC_WARN_UNUSED_FUNCTION = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
|
||||
LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
|
||||
MTL_ENABLE_DEBUG_INFO = NO;
|
||||
MTL_FAST_MATH = YES;
|
||||
|
||||
@ -302,7 +302,7 @@
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
||||
GCC_WARN_UNUSED_FUNCTION = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
|
||||
MTL_ENABLE_DEBUG_INFO = NO;
|
||||
MTL_FAST_MATH = YES;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
@ -364,7 +364,7 @@
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
||||
GCC_WARN_UNUSED_FUNCTION = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
|
||||
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
|
||||
MTL_FAST_MATH = YES;
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
|
||||
@ -306,7 +306,7 @@ expression: pbxproj.serialize()
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
||||
GCC_WARN_UNUSED_FUNCTION = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
|
||||
MTL_ENABLE_DEBUG_INFO = NO;
|
||||
MTL_FAST_MATH = YES;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
@ -368,7 +368,7 @@ expression: pbxproj.serialize()
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
||||
GCC_WARN_UNUSED_FUNCTION = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
|
||||
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
|
||||
MTL_FAST_MATH = YES;
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
|
||||
@ -262,7 +262,7 @@ Pbxproj {
|
||||
identation: "\t\t\t\t",
|
||||
line_number: 304,
|
||||
key: "IPHONEOS_DEPLOYMENT_TARGET",
|
||||
value: "13.0",
|
||||
value: "14.0",
|
||||
},
|
||||
BuildSettings {
|
||||
identation: "\t\t\t\t",
|
||||
@ -584,7 +584,7 @@ Pbxproj {
|
||||
identation: "\t\t\t\t",
|
||||
line_number: 366,
|
||||
key: "IPHONEOS_DEPLOYMENT_TARGET",
|
||||
value: "13.0",
|
||||
value: "14.0",
|
||||
},
|
||||
BuildSettings {
|
||||
identation: "\t\t\t\t",
|
||||
|
||||
@ -88,7 +88,7 @@
|
||||
},
|
||||
"createUpdaterArtifacts": false,
|
||||
"iOS": {
|
||||
"minimumSystemVersion": "13.0"
|
||||
"minimumSystemVersion": "14.0"
|
||||
},
|
||||
"icon": [],
|
||||
"linux": {
|
||||
@ -2217,7 +2217,7 @@
|
||||
"iOS": {
|
||||
"description": "iOS configuration.",
|
||||
"default": {
|
||||
"minimumSystemVersion": "13.0"
|
||||
"minimumSystemVersion": "14.0"
|
||||
},
|
||||
"allOf": [
|
||||
{
|
||||
@ -3687,7 +3687,7 @@
|
||||
},
|
||||
"minimumSystemVersion": {
|
||||
"description": "A version string indicating the minimum iOS version that the bundled application supports. Defaults to `13.0`.\n\n Maps to the IPHONEOS_DEPLOYMENT_TARGET value.",
|
||||
"default": "13.0",
|
||||
"default": "14.0",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
|
||||
@ -690,7 +690,7 @@ fn macos_minimum_system_version() -> Option<String> {
|
||||
}
|
||||
|
||||
fn ios_minimum_system_version() -> String {
|
||||
"13.0".into()
|
||||
"14.0".into()
|
||||
}
|
||||
|
||||
/// Configuration for a target language for the WiX build.
|
||||
|
||||
Loading…
Reference in New Issue
Block a user