Skip to content

Commit dc32d63

Browse files
authored
Merge pull request #63 from NoodlFroot/master
Fix build version issues
2 parents 31383de + 548c129 commit dc32d63

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

DynamicColor.podspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'DynamicColor'
3-
s.version = '5.0.0'
3+
s.version = '5.0.1'
44
s.license = 'MIT'
55
s.swift_version = ['5.0', '5.1']
66
s.summary = 'Yet another extension to manipulate colors easily in Swift (UIColor, NSColor and SwiftUI)'
@@ -10,7 +10,7 @@ Pod::Spec.new do |s|
1010
s.source = { :git => 'https://github.com/yannickl/DynamicColor.git', :tag => s.version }
1111
s.screenshot = 'http://yannickloriot.com/resources/dynamiccolor-sample-screenshot.png'
1212

13-
s.ios.deployment_target = '8.0'
13+
s.ios.deployment_target = '11.0'
1414
s.osx.deployment_target = '10.9'
1515
s.tvos.deployment_target = '9.0'
1616
s.watchos.deployment_target = '2.0'

Examples/DynamicColorExample.xcodeproj/project.pbxproj

+6-4
Original file line numberDiff line numberDiff line change
@@ -1095,9 +1095,9 @@
10951095
);
10961096
INFOPLIST_FILE = DynamicColor/Info.plist;
10971097
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
1098-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
1098+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
10991099
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1100-
MARKETING_VERSION = 5.0.0;
1100+
MARKETING_VERSION = 5.0.1;
11011101
PRODUCT_BUNDLE_IDENTIFIER = "com.yannickloriot.$(PRODUCT_NAME:rfc1034identifier)";
11021102
PRODUCT_NAME = "$(TARGET_NAME)";
11031103
SKIP_INSTALL = YES;
@@ -1119,9 +1119,9 @@
11191119
DYLIB_INSTALL_NAME_BASE = "@rpath";
11201120
INFOPLIST_FILE = DynamicColor/Info.plist;
11211121
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
1122-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
1122+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
11231123
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1124-
MARKETING_VERSION = 5.0.0;
1124+
MARKETING_VERSION = 5.0.1;
11251125
PRODUCT_BUNDLE_IDENTIFIER = "com.yannickloriot.$(PRODUCT_NAME:rfc1034identifier)";
11261126
PRODUCT_NAME = "$(TARGET_NAME)";
11271127
SKIP_INSTALL = YES;
@@ -1287,6 +1287,7 @@
12871287
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
12881288
DEVELOPMENT_TEAM = "";
12891289
INFOPLIST_FILE = "$(SRCROOT)/iOSExample/Info.plist";
1290+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
12901291
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
12911292
MARKETING_VERSION = 5.0.0;
12921293
PRODUCT_BUNDLE_IDENTIFIER = "com.yannickloriot.$(PRODUCT_NAME:rfc1034identifier)";
@@ -1302,6 +1303,7 @@
13021303
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
13031304
DEVELOPMENT_TEAM = "";
13041305
INFOPLIST_FILE = "$(SRCROOT)/iOSExample/Info.plist";
1306+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
13051307
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
13061308
MARKETING_VERSION = 5.0.0;
13071309
PRODUCT_BUNDLE_IDENTIFIER = "com.yannickloriot.$(PRODUCT_NAME:rfc1034identifier)";

Package.swift

+3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ import PackageDescription
33

44
let package = Package(
55
name: "DynamicColor",
6+
platforms: [
7+
.iOS(SupportedPlatform.IOSVersion.v11)
8+
],
69
products: [
710
.library(name: "DynamicColor", targets: ["DynamicColor"]),
811
],

0 commit comments

Comments
 (0)