From 2428d9e0217e61c10b6a0f3d531d78570160c7bc Mon Sep 17 00:00:00 2001 From: Jacob Farkas Date: Tue, 28 Aug 2018 16:06:23 -0700 Subject: [PATCH] Use the latest version of KissXML to fix a build issue --- LastFm.podspec | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/LastFm.podspec b/LastFm.podspec index 1f6a242..16b5246 100644 --- a/LastFm.podspec +++ b/LastFm.podspec @@ -1,16 +1,16 @@ Pod::Spec.new do |s| s.name = "LastFm" - s.version = "1.17.0" + s.version = "1.18.0" s.summary = "Block based Last.fm SDK for iOS and Mac OS X." s.homepage = "https://github.com/gangverk/LastFm" s.license = 'MIT' s.author = { "Kevin Renskers" => "info@mixedcase.nl" } s.source = { :git => "https://github.com/gangverk/LastFm.git", :tag => s.version.to_s } - s.ios.deployment_target = '6.0' - s.osx.deployment_target = '10.8' + s.ios.deployment_target = '8.0' + s.osx.deployment_target = '10.9' s.tvos.deployment_target = '9.0' s.source_files = 'LastFm/*.{h,m}' s.requires_arc = true s.xcconfig = { 'HEADER_SEARCH_PATHS' => '"$(SDKROOT)/usr/include/libxml2"' } - s.dependency 'KissXML', '~> 5.0.3' + s.dependency 'KissXML', '~> 5.2.3' end