diff --git a/FontBlaster.podspec b/FontBlaster.podspec index 33e4476..819af4b 100755 --- a/FontBlaster.podspec +++ b/FontBlaster.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "FontBlaster" - s.version = "4.0.2" + s.version = "4.0.3" s.summary = "Programmatically load custom fonts into your iOS app." s.description = <<-DESC @@ -11,9 +11,12 @@ Say goodbye to importing custom fonts via property lists as **FontBlaster** auto s.homepage = "https://github.com/ArtSabintsev/FontBlaster" s.license = "MIT" s.authors = { "Arthur Ariel Sabintsev" => "arthur@sabintsev.com"} - s.platform = :ios, "8.0" - s.platform = :tvos, "9.0" s.source = { :git => "https://github.com/ArtSabintsev/FontBlaster.git", :tag => s.version.to_s } s.source_files = 'Sources/' s.requires_arc = true + + # Deployment Targets + s.ios.deployment_target = "8.0" + s.tvos.deployment_target = "9.0" + end