From 208bc04c6c831deea0038ad93ae14943019db3f8 Mon Sep 17 00:00:00 2001 From: Arthur Ariel Sabintsev Date: Wed, 28 Feb 2018 10:55:38 -0500 Subject: [PATCH] Updated podspec --- FontBlaster.podspec | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) 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