From 86213b4d3b1b3578cc8cc2271fec0cf679ba8b1a Mon Sep 17 00:00:00 2001 From: Kacy James Date: Wed, 10 Jun 2020 18:08:13 -0400 Subject: [PATCH] Bumped version number, added tvOS support --- VCRURLConnection.podspec | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) 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