Skip to content

Commit 8bf96f7

Browse files
committed
Merge pull request Quick#277 from Quick/276-ios-7-deployment-target
Quick.xcodeproj: Lower iOS deployment target to 7.0
2 parents a57176c + 028718b commit 8bf96f7

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

Quick.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "Quick"
3-
s.version = "0.3.0"
3+
s.version = "0.3.1"
44
s.summary = "The Swift (and Objective-C) testing framework."
55

66
s.description = <<-DESC
@@ -11,7 +11,7 @@ Pod::Spec.new do |s|
1111
s.license = { :type => "Apache 2.0", :file => "LICENSE" }
1212

1313
s.author = "Quick Contributors"
14-
s.ios.deployment_target = "8.0"
14+
s.ios.deployment_target = "7.0"
1515
s.osx.deployment_target = "10.10"
1616

1717
s.source = { :git => "https://github.com/Quick/Quick.git", :tag => "v#{s.version}" }

Quick.xcodeproj/project.pbxproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1164,7 +1164,7 @@
11641164
);
11651165
INFOPLIST_FILE = Quick/Info.plist;
11661166
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
1167-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
1167+
IPHONEOS_DEPLOYMENT_TARGET = 7.0;
11681168
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
11691169
METAL_ENABLE_DEBUG_INFO = YES;
11701170
ONLY_ACTIVE_ARCH = NO;
@@ -1190,7 +1190,7 @@
11901190
);
11911191
INFOPLIST_FILE = Quick/Info.plist;
11921192
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
1193-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
1193+
IPHONEOS_DEPLOYMENT_TARGET = 7.0;
11941194
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
11951195
METAL_ENABLE_DEBUG_INFO = NO;
11961196
PRODUCT_MODULE_NAME = Quick;
@@ -1215,7 +1215,7 @@
12151215
"$(inherited)",
12161216
);
12171217
INFOPLIST_FILE = QuickTests/Info.plist;
1218-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
1218+
IPHONEOS_DEPLOYMENT_TARGET = 7.0;
12191219
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
12201220
METAL_ENABLE_DEBUG_INFO = YES;
12211221
ONLY_ACTIVE_ARCH = NO;
@@ -1235,7 +1235,7 @@
12351235
"$(inherited)",
12361236
);
12371237
INFOPLIST_FILE = QuickTests/Info.plist;
1238-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
1238+
IPHONEOS_DEPLOYMENT_TARGET = 7.0;
12391239
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
12401240
METAL_ENABLE_DEBUG_INFO = NO;
12411241
ONLY_ACTIVE_ARCH = NO;
@@ -1300,7 +1300,7 @@
13001300
"$(inherited)",
13011301
);
13021302
INFOPLIST_FILE = QuickFocusedTests/Info.plist;
1303-
IPHONEOS_DEPLOYMENT_TARGET = 8.2;
1303+
IPHONEOS_DEPLOYMENT_TARGET = 7.0;
13041304
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
13051305
MTL_ENABLE_DEBUG_INFO = YES;
13061306
ONLY_ACTIVE_ARCH = NO;
@@ -1320,7 +1320,7 @@
13201320
"$(inherited)",
13211321
);
13221322
INFOPLIST_FILE = QuickFocusedTests/Info.plist;
1323-
IPHONEOS_DEPLOYMENT_TARGET = 8.2;
1323+
IPHONEOS_DEPLOYMENT_TARGET = 7.0;
13241324
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
13251325
MTL_ENABLE_DEBUG_INFO = NO;
13261326
ONLY_ACTIVE_ARCH = NO;

0 commit comments

Comments
 (0)