Skip to content
This repository was archived by the owner on Jan 16, 2021. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
7 changes: 4 additions & 3 deletions ParseFacebookUtilsV4.podspec
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
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.'
s.authors = 'Parse'

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'
Expand All @@ -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'
Expand Down
4 changes: 2 additions & 2 deletions Resources/Info-iOS.plist
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.9.0</string>
<string>1.10.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleSupportedPlatforms</key>
Expand All @@ -22,7 +22,7 @@
<string>iPhoneOS</string>
</array>
<key>CFBundleVersion</key>
<string>1.9.0</string>
<string>1.10.0</string>
<key>MinimumOSVersion</key>
<string>6.0</string>
</dict>
Expand Down
4 changes: 2 additions & 2 deletions Resources/Info-tvOS.plist
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.9.0</string>
<string>1.10.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.9.0</string>
<string>1.10.0</string>
</dict>
</plist>