From cef21991e4f6a1328ba8a7a415af6cbf8360145b Mon Sep 17 00:00:00 2001 From: lanephillips Date: Thu, 6 Apr 2023 07:30:42 -0500 Subject: [PATCH] iOS target only has to go to 11; tvOS also --- SwiftyJSON.podspec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SwiftyJSON.podspec b/SwiftyJSON.podspec index 1e97cc93..60f4cffb 100644 --- a/SwiftyJSON.podspec +++ b/SwiftyJSON.podspec @@ -9,9 +9,9 @@ Pod::Spec.new do |s| s.requires_arc = true s.swift_version = "5.0" s.osx.deployment_target = "10.13" - s.ios.deployment_target = "16.1" + s.ios.deployment_target = "11.0" s.watchos.deployment_target = "3.0" - s.tvos.deployment_target = "9.0" + s.tvos.deployment_target = "11.0" s.source = { :git => "https://github.com/SwiftyJSON/SwiftyJSON.git", :tag => s.version } s.source_files = "Source/SwiftyJSON/*.swift" end