From 9a795ad511b6d4283e720ce0658808f3a8f3412f Mon Sep 17 00:00:00 2001 From: Kyle Fuller Date: Sat, 18 Nov 2017 10:49:57 +0000 Subject: [PATCH] fix: Target macOS 10.10 or onwards qos is not available on 10.9 --- Mockingjay.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mockingjay.podspec b/Mockingjay.podspec index 4a563c7..7a751a7 100644 --- a/Mockingjay.podspec +++ b/Mockingjay.podspec @@ -8,7 +8,7 @@ Pod::Spec.new do |spec| spec.social_media_url = 'http://twitter.com/kylefuller' spec.source = { :git => 'https://github.com/kylef/Mockingjay.git', :tag => "#{spec.version}" } spec.ios.deployment_target = '8.0' - spec.osx.deployment_target = '10.9' + spec.osx.deployment_target = '10.10' spec.requires_arc = true spec.subspec 'Core' do |core_spec|