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

Commit 14c656f

Browse files
committed
Merge pull request #53 from ParsePlatform/nlutsenko.1120
ParseFacebookUtilsV4 1.11.1
2 parents 967a34a + 6841343 commit 14c656f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+27
-6165
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,7 @@ Vendor/Bolts.framework
2323
Vendor/FBSDKCoreKit.framework
2424
Vendor/FBSDKLoginKit.framework
2525

26+
Vendor/tvOS/Parse.framework
27+
Vendor/tvOS/Bolts.framework
2628
Vendor/tvOS/FBSDKCoreKit.framework
2729
Vendor/tvOS/FBSDKTVOSKit.framework

CHANGELOG.md

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,28 @@ All notable changes to this project will be documented in this file.
33

44
---
55

6+
## [ParseFacebookUtils-V4 1.11.1](https://github.com/ParsePlatform/ParseFacebookUtils-iOS/releases/tag/v4-1.11.1) (02/20/2016)
7+
8+
#### Updated
9+
10+
- `ParseFacebookUtilsV4` CocoaPod now uses the latest version of Facebook SDK.
11+
[#50](https://github.com/ParsePlatform/ParseFacebookUtils-iOS/pull/50),
12+
[#48](https://github.com/ParsePlatform/ParseFacebookUtils-iOS/pull/48)
13+
by [@nlutsenko](https://github.com/nlutsenko)
14+
15+
#### Fixed
16+
17+
- Fixed static analyzer warnings that appeared in Xcode 7.3 beta.
18+
[#51](https://github.com/ParsePlatform/ParseFacebookUtils-iOS/pull/51)
19+
by [@nlutsenko](https://github.com/nlutsenko)
20+
621
## [ParseFacebookUtils-V4 1.11.0](https://github.com/ParsePlatform/ParseFacebookUtils-iOS/releases/tag/v4-1.11.0) (01/07/2016)
722

823
#### New
9-
- ParseFacebookUtils now requires Xcode 7.0+.
24+
25+
- ParseFacebookUtils now requires Xcode 7.0+.
1026
[#38](https://github.com/ParsePlatform/ParseFacebookUtils-iOS/pull/38)
11-
by [Nikita Lutsenko](https://github.com/nlutsenko)
27+
by [@nlutsenko](https://github.com/nlutsenko)
1228

1329
## [ParseFacebookUtils-V4 1.10.0](https://github.com/ParsePlatform/ParseFacebookUtils-iOS/releases/tag/v4-1.10.0) (12/14/2015)
1430

ParseFacebookUtils.xcodeproj/project.pbxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -691,7 +691,7 @@
691691
);
692692
runOnlyForDeploymentPostprocessing = 0;
693693
shellPath = /bin/sh;
694-
shellScript = "if [ ! -d $SRCROOT/Vendor ]; then\n mkdir $SRCROOT/Vendor\nfi\n\ncd $SRCROOT/Vendor\n\nif [[ ! -d \"Parse.framework\" || ! -d \"Bolts.framework\" ]]; then\n ARCHIVE_NAME=Parse-iOS.zip\n\n LATEST_TAG=$(bash -l -c \"bundle exec pod spec cat Parse\" | grep version | head -n 1 | cut -d '\"' -f 4)\n ARCHIVE_URL=\"https://github.com/ParsePlatform/Parse-SDK-iOS-OSX/releases/download/${LATEST_TAG}/${ARCHIVE_NAME}\"\n curl -L $ARCHIVE_URL -o $ARCHIVE_NAME\n\n unzip $ARCHIVE_NAME\n rm $ARCHIVE_NAME\nfi\n\nif [ ! -d $SRCROOT/Vendor/tvOS ]; then\n mkdir $SRCROOT/Vendor/tvOS\nfi\n\ncd $SRCROOT/Vendor/tvOS\n\nif [[ ! -d \"FBSDKCoreKit.framework\" || ! -d \"FBSDKTVOSKit.framework\" ]]; then\n ARCHIVE_NAME=FBSDK.zip\n\n ARCHIVE_URL=\"https://origincache.facebook.com/developers/resources/?id=FacebookSDKs-tvOS-current.zip\"\n curl $ARCHIVE_URL -o $ARCHIVE_NAME\n\n unzip $ARCHIVE_NAME -d fbsdk\n mv fbsdk/FBSDKCoreKit.framework .\n mv fbsdk/FBSDKTVOSKit.framework .\n\n rm $ARCHIVE_NAME\n rm -r fbsdk\nfi\n";
694+
shellScript = "if [ ! -d $SRCROOT/Vendor/tvOS ]; then\n mkdir $SRCROOT/Vendor/tvOS\nfi\n\ncd $SRCROOT/Vendor/tvOS\n\nif [[ ! -d \"Parse.framework\" || ! -d \"Bolts.framework\" ]]; then\n ARCHIVE_NAME=Parse-tvOS.zip\n\n LATEST_TAG=$(bash -l -c \"bundle exec pod spec cat Parse\" | grep version | head -n 1 | cut -d '\"' -f 4)\n ARCHIVE_URL=\"https://github.com/ParsePlatform/Parse-SDK-iOS-OSX/releases/download/${LATEST_TAG}/${ARCHIVE_NAME}\"\n curl -L $ARCHIVE_URL -o $ARCHIVE_NAME\n\n unzip $ARCHIVE_NAME\n rm $ARCHIVE_NAME\nfi\n\nif [[ ! -d \"FBSDKCoreKit.framework\" || ! -d \"FBSDKTVOSKit.framework\" ]]; then\n ARCHIVE_NAME=FBSDK.zip\n\n ARCHIVE_URL=\"https://origincache.facebook.com/developers/resources/?id=FacebookSDKs-tvOS-current.zip\"\n curl $ARCHIVE_URL -o $ARCHIVE_NAME\n\n unzip $ARCHIVE_NAME -d fbsdk\n mv fbsdk/FBSDKCoreKit.framework .\n mv fbsdk/FBSDKTVOSKit.framework .\n\n rm $ARCHIVE_NAME\n rm -r fbsdk\nfi\n";
695695
showEnvVarsInLog = 0;
696696
};
697697
81FE7F751C17790400E6BD34 /* Generate Localizable Strings */ = {

ParseFacebookUtilsV4.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'ParseFacebookUtilsV4'
3-
s.version = '1.11.0'
3+
s.version = '1.11.1'
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.'
@@ -32,7 +32,7 @@ Pod::Spec.new do |s|
3232

3333
s.dependency 'Bolts/Tasks', '>= 1.6'
3434
s.dependency 'Parse', '~> 1.12'
35-
s.dependency 'FBSDKCoreKit', '~> 4.10.0'
35+
s.dependency 'FBSDKCoreKit', '~> 4.10'
3636

3737
s.ios.dependency 'FBSDKLoginKit', '~> 4.10'
3838
s.tvos.dependency 'FBSDKTVOSKit', '~> 4.10'

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.11.0</string>
16+
<string>1.11.1</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.11.0</string>
25+
<string>1.11.1</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.11.0</string>
16+
<string>1.11.1</string>
1717
<key>CFBundleSignature</key>
1818
<string>????</string>
1919
<key>CFBundleVersion</key>
20-
<string>1.11.0</string>
20+
<string>1.11.1</string>
2121
</dict>
2222
</plist>

Vendor/tvOS/Bolts.framework/Bolts

-381 KB
Binary file not shown.

Vendor/tvOS/Bolts.framework/Headers/BFCancellationToken.h

Lines changed: 0 additions & 42 deletions
This file was deleted.

Vendor/tvOS/Bolts.framework/Headers/BFCancellationTokenRegistration.h

Lines changed: 0 additions & 29 deletions
This file was deleted.

Vendor/tvOS/Bolts.framework/Headers/BFCancellationTokenSource.h

Lines changed: 0 additions & 60 deletions
This file was deleted.

Vendor/tvOS/Bolts.framework/Headers/BFDefines.h

Lines changed: 0 additions & 18 deletions
This file was deleted.

Vendor/tvOS/Bolts.framework/Headers/BFExecutor.h

Lines changed: 0 additions & 62 deletions
This file was deleted.

0 commit comments

Comments
 (0)