Skip to content

Commit 95e3cc7

Browse files
committed
Update build settings
1 parent 42a2cfb commit 95e3cc7

2 files changed

Lines changed: 14 additions & 12 deletions

File tree

MoreCodable.podspec

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'MoreCodable'
3-
s.version = '1.3.1'
3+
s.version = '1.3.2'
44
s.summary = 'MoreCodable expands the possibilities of Codable.'
55

66
s.description = <<-DESC
@@ -14,13 +14,13 @@ It contains DictionaryEncoder/Decoder, URLQueryItemsEncoder/Decoder, ObjectMerge
1414
s.source = { :git => 'https://github.com/tattn/MoreCodable.git', :tag => s.version.to_s }
1515
s.social_media_url = 'https://twitter.com/tanakasan2525'
1616

17-
s.ios.deployment_target = '8.0'
17+
s.ios.deployment_target = '13.0'
1818
# s.osx.deployment_target = '10.10'
19-
s.watchos.deployment_target = '2.0'
20-
s.tvos.deployment_target = '9.0'
19+
s.watchos.deployment_target = '6.0'
20+
s.tvos.deployment_target = '13.0'
2121

22-
s.source_files = 'Sources/**/*.swift'
23-
s.public_header_files = 'Sources/**/*.h'
22+
s.source_files = 'Sources/*.{swift,h}'
23+
s.public_header_files = 'Sources/*.h'
2424

2525
s.frameworks = 'Foundation'
2626
end

MoreCodable.xcodeproj/project.pbxproj

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -393,15 +393,18 @@
393393
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
394394
GCC_WARN_UNUSED_FUNCTION = YES;
395395
GCC_WARN_UNUSED_VARIABLE = YES;
396-
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
396+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
397+
MACOSX_DEPLOYMENT_TARGET = "$(RECOMMENDED_MACOSX_DEPLOYMENT_TARGET)";
397398
MTL_ENABLE_DEBUG_INFO = YES;
398399
ONLY_ACTIVE_ARCH = YES;
399400
SDKROOT = iphoneos;
400401
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
401402
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
402403
SWIFT_VERSION = 5.0;
404+
TVOS_DEPLOYMENT_TARGET = 13.0;
403405
VERSIONING_SYSTEM = "apple-generic";
404406
VERSION_INFO_PREFIX = "";
407+
WATCHOS_DEPLOYMENT_TARGET = 6.0;
405408
};
406409
name = Debug;
407410
};
@@ -450,14 +453,17 @@
450453
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
451454
GCC_WARN_UNUSED_FUNCTION = YES;
452455
GCC_WARN_UNUSED_VARIABLE = YES;
453-
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
456+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
457+
MACOSX_DEPLOYMENT_TARGET = "$(RECOMMENDED_MACOSX_DEPLOYMENT_TARGET)";
454458
MTL_ENABLE_DEBUG_INFO = NO;
455459
SDKROOT = iphoneos;
456460
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
457461
SWIFT_VERSION = 5.0;
462+
TVOS_DEPLOYMENT_TARGET = 13.0;
458463
VALIDATE_PRODUCT = YES;
459464
VERSIONING_SYSTEM = "apple-generic";
460465
VERSION_INFO_PREFIX = "";
466+
WATCHOS_DEPLOYMENT_TARGET = 6.0;
461467
};
462468
name = Release;
463469
};
@@ -478,7 +484,6 @@
478484
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
479485
SKIP_INSTALL = YES;
480486
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
481-
TARGETED_DEVICE_FAMILY = "1,2";
482487
};
483488
name = Debug;
484489
};
@@ -498,7 +503,6 @@
498503
PRODUCT_BUNDLE_IDENTIFIER = com.github.tattn.MoreCodable;
499504
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
500505
SKIP_INSTALL = YES;
501-
TARGETED_DEVICE_FAMILY = "1,2";
502506
};
503507
name = Release;
504508
};
@@ -507,7 +511,6 @@
507511
buildSettings = {
508512
CODE_SIGN_STYLE = Automatic;
509513
INFOPLIST_FILE = Tests/Info.plist;
510-
IPHONEOS_DEPLOYMENT_TARGET = 11.2;
511514
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
512515
PRODUCT_BUNDLE_IDENTIFIER = com.github.tattn.MoreCodableTests;
513516
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -520,7 +523,6 @@
520523
buildSettings = {
521524
CODE_SIGN_STYLE = Automatic;
522525
INFOPLIST_FILE = Tests/Info.plist;
523-
IPHONEOS_DEPLOYMENT_TARGET = 11.2;
524526
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
525527
PRODUCT_BUNDLE_IDENTIFIER = com.github.tattn.MoreCodableTests;
526528
PRODUCT_NAME = "$(TARGET_NAME)";

0 commit comments

Comments
 (0)