Skip to content

Commit bd3eacc

Browse files
committed
Bump minimum supported version to iOS 13
After all, all clients of this app already support above iOS 13. Hopefully this will address the 12 vs 13 issue we're seeing in CI. https://buildkite.com/automattic/aztec-editor-ios/builds/211/steps/canvas?jid=019738a1-cb58-4c2d-84de-d8aa8f76a57b
1 parent 38c3770 commit bd3eacc

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

Example/AztecExample.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -479,7 +479,7 @@
479479
GCC_WARN_UNUSED_FUNCTION = YES;
480480
GCC_WARN_UNUSED_VARIABLE = YES;
481481
HEADER_SEARCH_PATHS = /usr/include/libxml2;
482-
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
482+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
483483
MTL_ENABLE_DEBUG_INFO = YES;
484484
ONLY_ACTIVE_ARCH = YES;
485485
SDKROOT = iphoneos;
@@ -534,7 +534,7 @@
534534
GCC_WARN_UNUSED_FUNCTION = YES;
535535
GCC_WARN_UNUSED_VARIABLE = YES;
536536
HEADER_SEARCH_PATHS = /usr/include/libxml2;
537-
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
537+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
538538
MTL_ENABLE_DEBUG_INFO = NO;
539539
SDKROOT = iphoneos;
540540
STRIP_INSTALLED_PRODUCT = NO;
@@ -715,7 +715,7 @@
715715
GCC_WARN_UNUSED_FUNCTION = YES;
716716
GCC_WARN_UNUSED_VARIABLE = YES;
717717
HEADER_SEARCH_PATHS = /usr/include/libxml2;
718-
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
718+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
719719
MTL_ENABLE_DEBUG_INFO = NO;
720720
ONLY_ACTIVE_ARCH = YES;
721721
SDKROOT = iphoneos;
@@ -801,7 +801,7 @@
801801
GCC_WARN_UNUSED_FUNCTION = YES;
802802
GCC_WARN_UNUSED_VARIABLE = YES;
803803
HEADER_SEARCH_PATHS = /usr/include/libxml2;
804-
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
804+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
805805
MTL_ENABLE_DEBUG_INFO = YES;
806806
ONLY_ACTIVE_ARCH = YES;
807807
SDKROOT = iphoneos;

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import PackageDescription
55

66
let package = Package(
77
name: "WordPress-AztecEditor-iOS",
8-
platforms: [.iOS(.v12)],
8+
platforms: [.iOS(.v13)],
99
products: [
1010
.library(name: "Aztec", targets: ["Aztec"]),
1111
.library(name: "HTMLParser", targets: ["HTMLParser"]),

WordPress-Aztec-iOS.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Pod::Spec.new do |s|
1515
s.license = { type: 'MPLv2', file: 'LICENSE.md' }
1616
s.author = { 'The WordPress Mobile Team' => 'mobile@wordpress.org' }
1717

18-
s.ios.deployment_target = '12.0'
18+
s.ios.deployment_target = '13.0'
1919
s.swift_version = '5.0'
2020

2121
s.source = { git: 'https://github.com/wordpress-mobile/AztecEditor-iOS.git', tag: s.version.to_s }

WordPress-Editor-iOS.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Pod::Spec.new do |s|
1616
s.license = { type: 'MPLv2', file: 'LICENSE.md' }
1717
s.author = { 'The WordPress Mobile Team' => 'mobile@wordpress.org' }
1818

19-
s.ios.deployment_target = '12.0'
19+
s.ios.deployment_target = '13.0'
2020
s.swift_version = '5.0'
2121

2222
s.source = { git: 'https://github.com/wordpress-mobile/AztecEditor-iOS.git', tag: s.version.to_s }

0 commit comments

Comments
 (0)