From c984a9f1e218c0e9df6d01f8c30eff938bd63300 Mon Sep 17 00:00:00 2001 From: Nikita Lutsenko Date: Fri, 11 Dec 2015 18:12:38 -0800 Subject: [PATCH 1/2] ParseFacebookUtils 1.10.0 :tv: --- CHANGELOG.md | 8 ++++++++ ParseFacebookUtilsV4.podspec | 7 ++++--- Resources/Info-iOS.plist | 4 ++-- Resources/Info-tvOS.plist | 4 ++-- 4 files changed, 16 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ed7da6a..e7938c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. --- +## [ParseFacebookUtils-V4 1.10.0](https://github.com/ParsePlatform/ParseFacebookUtils-iOS/releases/tag/v4-1.10.0) (12/14/2015) + +#### New +- ParseFacebookUtils now supports tvOS. #23 + +#### Improved +- Updated, cleaned up and improved documentation. #22 + ## [ParseFacebookUtils-V4 1.9.1](https://github.com/ParsePlatform/ParseFacebookUtils-iOS/releases/tag/v4-1.9.1) (11/17/2015) #### New diff --git a/ParseFacebookUtilsV4.podspec b/ParseFacebookUtilsV4.podspec index dba7c10..5f4a02e 100644 --- a/ParseFacebookUtilsV4.podspec +++ b/ParseFacebookUtilsV4.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'ParseFacebookUtilsV4' - s.version = '1.9.1' + s.version = '1.10.0' s.license = { :type => 'Commercial', :text => "See https://www.parse.com/about/terms" } s.homepage = 'https://www.parse.com/' s.summary = 'Parse is a complete technology stack to power your app\'s backend.' @@ -8,8 +8,9 @@ Pod::Spec.new do |s| s.source = { :git => "https://github.com/ParsePlatform/ParseFacebookUtils-iOS.git", :tag => "v4-#{s.version.to_s}" } - s.platform = :ios + s.platform = :ios, :tvos s.ios.deployment_target = '7.0' + s.tvos.deployment_target = '9.0' s.requires_arc = true s.public_header_files = 'ParseFacebookUtils/*.h' @@ -30,7 +31,7 @@ Pod::Spec.new do |s| s.libraries = 'z', 'sqlite3' s.dependency 'Bolts/Tasks', '>= 1.5' - s.dependency 'Parse', '~> 1.10' + s.dependency 'Parse', '~> 1.11' s.dependency 'FBSDKCoreKit', '~> 4.9.0-beta' s.ios.dependency 'FBSDKLoginKit', '~> 4.9.0-beta' diff --git a/Resources/Info-iOS.plist b/Resources/Info-iOS.plist index 1775d38..f39d874 100644 --- a/Resources/Info-iOS.plist +++ b/Resources/Info-iOS.plist @@ -13,7 +13,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 1.9.0 + 1.10.0 CFBundleSignature ???? CFBundleSupportedPlatforms @@ -22,7 +22,7 @@ iPhoneOS CFBundleVersion - 1.9.0 + 1.10.0 MinimumOSVersion 6.0 diff --git a/Resources/Info-tvOS.plist b/Resources/Info-tvOS.plist index 0ca3b24..8420b20 100644 --- a/Resources/Info-tvOS.plist +++ b/Resources/Info-tvOS.plist @@ -13,10 +13,10 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 1.9.0 + 1.10.0 CFBundleSignature ???? CFBundleVersion - 1.9.0 + 1.10.0 From 17199e11775ea916097aad23104880a8b810aa31 Mon Sep 17 00:00:00 2001 From: Nikita Lutsenko Date: Mon, 14 Dec 2015 09:55:54 -0800 Subject: [PATCH 2/2] Remove podspec lint with frameworks from Travis, due to FBSDK failing to build. --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index e16cc1b..5d862dd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,7 +19,6 @@ script: set -o pipefail xcodebuild test -workspace ParseFacebookUtils.xcworkspace -sdk iphonesimulator -scheme ParseFacebookUtilsV4-iOS -configuration Debug -destination "platform=iOS Simulator,name=iPhone 4s" -destination "platform=iOS Simulator,name=iPhone 6 Plus" GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES GCC_GENERATE_TEST_COVERAGE_FILES=YES | xcpretty elif [ "$TEST_TYPE" = CocoaPods ]; then - pod lib lint ParseFacebookUtilsV4.podspec pod lib lint --use-libraries ParseFacebookUtilsV4.podspec elif [ "$TEST_TYPE" = Package ]; then bundle exec rake package:frameworks