Skip to content
This repository was archived by the owner on Jan 16, 2021. It is now read-only.

Commit 791d844

Browse files
committed
Merge pull request #30 from ParsePlatform/nlutsenko.110
ParseFacebookUtils 1.10.0 📺
2 parents 5b35331 + 17199e1 commit 791d844

File tree

5 files changed

+16
-8
lines changed

5 files changed

+16
-8
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ script:
1919
set -o pipefail
2020
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
2121
elif [ "$TEST_TYPE" = CocoaPods ]; then
22-
pod lib lint ParseFacebookUtilsV4.podspec
2322
pod lib lint --use-libraries ParseFacebookUtilsV4.podspec
2423
elif [ "$TEST_TYPE" = Package ]; then
2524
bundle exec rake package:frameworks

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file.
33

44
---
55

6+
## [ParseFacebookUtils-V4 1.10.0](https://github.com/ParsePlatform/ParseFacebookUtils-iOS/releases/tag/v4-1.10.0) (12/14/2015)
7+
8+
#### New
9+
- ParseFacebookUtils now supports tvOS. #23
10+
11+
#### Improved
12+
- Updated, cleaned up and improved documentation. #22
13+
614
## [ParseFacebookUtils-V4 1.9.1](https://github.com/ParsePlatform/ParseFacebookUtils-iOS/releases/tag/v4-1.9.1) (11/17/2015)
715

816
#### New

ParseFacebookUtilsV4.podspec

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
Pod::Spec.new do |s|
22
s.name = 'ParseFacebookUtilsV4'
3-
s.version = '1.9.1'
3+
s.version = '1.10.0'
44
s.license = { :type => 'Commercial', :text => "See https://www.parse.com/about/terms" }
55
s.homepage = 'https://www.parse.com/'
66
s.summary = 'Parse is a complete technology stack to power your app\'s backend.'
77
s.authors = 'Parse'
88

99
s.source = { :git => "https://github.com/ParsePlatform/ParseFacebookUtils-iOS.git", :tag => "v4-#{s.version.to_s}" }
1010

11-
s.platform = :ios
11+
s.platform = :ios, :tvos
1212
s.ios.deployment_target = '7.0'
13+
s.tvos.deployment_target = '9.0'
1314
s.requires_arc = true
1415

1516
s.public_header_files = 'ParseFacebookUtils/*.h'
@@ -30,7 +31,7 @@ Pod::Spec.new do |s|
3031
s.libraries = 'z', 'sqlite3'
3132

3233
s.dependency 'Bolts/Tasks', '>= 1.5'
33-
s.dependency 'Parse', '~> 1.10'
34+
s.dependency 'Parse', '~> 1.11'
3435
s.dependency 'FBSDKCoreKit', '~> 4.9.0-beta'
3536

3637
s.ios.dependency 'FBSDKLoginKit', '~> 4.9.0-beta'

Resources/Info-iOS.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<key>CFBundlePackageType</key>
1414
<string>FMWK</string>
1515
<key>CFBundleShortVersionString</key>
16-
<string>1.9.0</string>
16+
<string>1.10.0</string>
1717
<key>CFBundleSignature</key>
1818
<string>????</string>
1919
<key>CFBundleSupportedPlatforms</key>
@@ -22,7 +22,7 @@
2222
<string>iPhoneOS</string>
2323
</array>
2424
<key>CFBundleVersion</key>
25-
<string>1.9.0</string>
25+
<string>1.10.0</string>
2626
<key>MinimumOSVersion</key>
2727
<string>6.0</string>
2828
</dict>

Resources/Info-tvOS.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
<key>CFBundlePackageType</key>
1414
<string>FMWK</string>
1515
<key>CFBundleShortVersionString</key>
16-
<string>1.9.0</string>
16+
<string>1.10.0</string>
1717
<key>CFBundleSignature</key>
1818
<string>????</string>
1919
<key>CFBundleVersion</key>
20-
<string>1.9.0</string>
20+
<string>1.10.0</string>
2121
</dict>
2222
</plist>

0 commit comments

Comments
 (0)