Skip to content

Commit 2fd9135

Browse files
Set minimum version to iOS 11.0 to fix issues with weak linking of SwiftUI (#355)
* Set minimum version to iOS 11.0 to fix issues with weak linking of SwiftUI * Bump podspec minimum iOS version to 11.0
1 parent aab7804 commit 2fd9135

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import PackageDescription
55
let package = Package(
66
name: "SnapshotTesting",
77
platforms: [
8-
.iOS(.v10),
8+
.iOS(.v11),
99
.macOS(.v10_10),
1010
.tvOS(.v10)
1111
],

SnapshotTesting.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Pod::Spec.new do |s|
2626

2727
s.swift_versions = "5.0", "5.1.2", "5.2"
2828

29-
s.ios.deployment_target = "10.0"
29+
s.ios.deployment_target = "11.0"
3030
s.osx.deployment_target = "10.10"
3131
s.tvos.deployment_target = "10.0"
3232

SnapshotTesting.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1122,7 +1122,7 @@
11221122
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
11231123
GCC_WARN_UNUSED_FUNCTION = YES;
11241124
GCC_WARN_UNUSED_VARIABLE = YES;
1125-
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
1125+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
11261126
MACOSX_DEPLOYMENT_TARGET = 10.10;
11271127
PRODUCT_NAME = "$(TARGET_NAME)";
11281128
SWIFT_COMPILATION_MODE = wholemodule;
@@ -1265,7 +1265,7 @@
12651265
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
12661266
GCC_WARN_UNUSED_FUNCTION = YES;
12671267
GCC_WARN_UNUSED_VARIABLE = YES;
1268-
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
1268+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
12691269
MACOSX_DEPLOYMENT_TARGET = 10.10;
12701270
MTL_ENABLE_DEBUG_INFO = YES;
12711271
ONLY_ACTIVE_ARCH = YES;

project.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: SnapshotTesting
22
options:
33
bundleIdPrefix: co.pointfree
44
deploymentTarget:
5-
iOS: 10.0
5+
iOS: 11.0
66
macOS: '10.10'
77
tvOS: 10.0
88
indentWidth: 2

0 commit comments

Comments
 (0)