diff --git a/VCRURLConnection.podspec b/VCRURLConnection.podspec index acbcb06b..89d20f28 100644 --- a/VCRURLConnection.podspec +++ b/VCRURLConnection.podspec @@ -1,15 +1,17 @@ Pod::Spec.new do |s| s.name = "VCRURLConnection" - s.version = "0.2.5" - s.summary = "VCRURLConnection is an iOS and OSX API to record and replay HTTP interactions, inspired by VCR." + s.version = "0.2.6" + s.summary = "VCRURLConnection is an iOS, tvOS, and macOS API to record and replay HTTP interactions, inspired by VCR." s.homepage = "https://github.com/dstnbrkr/VCRURLConnection" s.license = { :type => 'MIT', :file => 'LICENSE' } s.author = { "Dustin Barker" => "dustin.barker@gmail.com" } - s.source = { :git => "https://github.com/dstnbrkr/VCRURLConnection.git", :tag => "0.2.5" } + s.source = { :git => "https://github.com/dstnbrkr/VCRURLConnection.git", :tag => "0.2.6" } s.ios.deployment_target = '5.0' s.ios.frameworks = 'MobileCoreServices' s.osx.deployment_target = '10.7' s.osx.frameworks = 'CoreServices' + s.tvos.deployment_target = '11.0' + s.tvos.frameworks = 'CoreServices' s.source_files = 'VCRURLConnection/**.{h,m}' s.requires_arc = true end