Skip to content
This repository is currently being migrated. It's locked while the migration is in progress.

Commit

Permalink
Added tvOS support
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinrenskers committed Feb 2, 2016
1 parent aafd487 commit e138da5
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
1.16.0 - February 2, 2016
- Added tvOS support to the podfile
- Updated minimum iOS version to 6
- Updated minimum OS X version to 10.8
- Fixed compiler notice

1.15.0 - January 17, 2014
- The LastFm podspec is now used by the example app as well
- Removed deprecated method:
Expand Down
9 changes: 5 additions & 4 deletions LastFm.podspec
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
Pod::Spec.new do |s|
s.name = "LastFm"
s.version = "1.15.0"
s.version = "1.16.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 = '4.0'
s.osx.deployment_target = '10.6'
s.ios.deployment_target = '6.0'
s.osx.deployment_target = '10.8'
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'
s.dependency 'KissXML', '~> 5.0.3'
end

0 comments on commit e138da5

Please sign in to comment.