From c9824557f384dafa0100379b7989a77acac47017 Mon Sep 17 00:00:00 2001 From: Tony Million Date: Mon, 18 Mar 2024 16:56:16 -0700 Subject: [PATCH] Update Reachability.podspec MacOS Deployment Target was too old --- Reachability.podspec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Reachability.podspec b/Reachability.podspec index f6424fa..19237d2 100644 --- a/Reachability.podspec +++ b/Reachability.podspec @@ -18,7 +18,7 @@ Pod::Spec.new do |s| s.homepage = 'https://github.com/tonymillion/Reachability' s.authors = { 'Tony Million' => 'tonymillion@gmail.com' } - s.social_media_url = "http://twitter.com/tonymillion" + s.social_media_url = "https://x.com/tonymillion" s.license = { :type => 'BSD', :text => license } @@ -29,6 +29,6 @@ Pod::Spec.new do |s| s.requires_arc = true s.swift_version = "4.1" s.ios.deployment_target = "11.0" - s.osx.deployment_target = "10.8" + s.osx.deployment_target = "10.13" s.tvos.deployment_target = "9.0" end