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

Commit

Permalink
Merge pull request #53 from ParsePlatform/nlutsenko.1120
Browse files Browse the repository at this point in the history
ParseFacebookUtilsV4 1.11.1
  • Loading branch information
nlutsenko committed Feb 23, 2016
2 parents 967a34a + 6841343 commit 14c656f
Show file tree
Hide file tree
Showing 43 changed files with 27 additions and 6,165 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,7 @@ Vendor/Bolts.framework
Vendor/FBSDKCoreKit.framework
Vendor/FBSDKLoginKit.framework

Vendor/tvOS/Parse.framework
Vendor/tvOS/Bolts.framework
Vendor/tvOS/FBSDKCoreKit.framework
Vendor/tvOS/FBSDKTVOSKit.framework
20 changes: 18 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,28 @@ All notable changes to this project will be documented in this file.

---

## [ParseFacebookUtils-V4 1.11.1](https://github.com/ParsePlatform/ParseFacebookUtils-iOS/releases/tag/v4-1.11.1) (02/20/2016)

#### Updated

- `ParseFacebookUtilsV4` CocoaPod now uses the latest version of Facebook SDK.
[#50](https://github.com/ParsePlatform/ParseFacebookUtils-iOS/pull/50),
[#48](https://github.com/ParsePlatform/ParseFacebookUtils-iOS/pull/48)
by [@nlutsenko](https://github.com/nlutsenko)

#### Fixed

- Fixed static analyzer warnings that appeared in Xcode 7.3 beta.
[#51](https://github.com/ParsePlatform/ParseFacebookUtils-iOS/pull/51)
by [@nlutsenko](https://github.com/nlutsenko)

## [ParseFacebookUtils-V4 1.11.0](https://github.com/ParsePlatform/ParseFacebookUtils-iOS/releases/tag/v4-1.11.0) (01/07/2016)

#### New
- ParseFacebookUtils now requires Xcode 7.0+.

- ParseFacebookUtils now requires Xcode 7.0+.
[#38](https://github.com/ParsePlatform/ParseFacebookUtils-iOS/pull/38)
by [Nikita Lutsenko](https://github.com/nlutsenko)
by [@nlutsenko](https://github.com/nlutsenko)

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

Expand Down
2 changes: 1 addition & 1 deletion ParseFacebookUtils.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -691,7 +691,7 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
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";
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";
showEnvVarsInLog = 0;
};
81FE7F751C17790400E6BD34 /* Generate Localizable Strings */ = {
Expand Down
4 changes: 2 additions & 2 deletions ParseFacebookUtilsV4.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'ParseFacebookUtilsV4'
s.version = '1.11.0'
s.version = '1.11.1'
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.'
Expand Down Expand Up @@ -32,7 +32,7 @@ Pod::Spec.new do |s|

s.dependency 'Bolts/Tasks', '>= 1.6'
s.dependency 'Parse', '~> 1.12'
s.dependency 'FBSDKCoreKit', '~> 4.10.0'
s.dependency 'FBSDKCoreKit', '~> 4.10'

s.ios.dependency 'FBSDKLoginKit', '~> 4.10'
s.tvos.dependency 'FBSDKTVOSKit', '~> 4.10'
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.11.0</string>
<string>1.11.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleSupportedPlatforms</key>
Expand All @@ -22,7 +22,7 @@
<string>iPhoneOS</string>
</array>
<key>CFBundleVersion</key>
<string>1.11.0</string>
<string>1.11.1</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.11.0</string>
<string>1.11.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.11.0</string>
<string>1.11.1</string>
</dict>
</plist>
Binary file removed Vendor/tvOS/Bolts.framework/Bolts
Binary file not shown.
42 changes: 0 additions & 42 deletions Vendor/tvOS/Bolts.framework/Headers/BFCancellationToken.h

This file was deleted.

This file was deleted.

60 changes: 0 additions & 60 deletions Vendor/tvOS/Bolts.framework/Headers/BFCancellationTokenSource.h

This file was deleted.

18 changes: 0 additions & 18 deletions Vendor/tvOS/Bolts.framework/Headers/BFDefines.h

This file was deleted.

62 changes: 0 additions & 62 deletions Vendor/tvOS/Bolts.framework/Headers/BFExecutor.h

This file was deleted.

Loading

0 comments on commit 14c656f

Please sign in to comment.