Skip to content

Commit

Permalink
Bump Version 5.9.0
Browse files Browse the repository at this point in the history
Summary: Bumping SDK version.

Reviewed By: jingping2015

Differential Revision: D18204300

fbshipit-source-id: 67628f1875132ebc3f3feed14b4dc2ec3c6fe70f
  • Loading branch information
joesus authored and facebook-github-bot committed Oct 29, 2019
1 parent f3be0da commit b726001
Show file tree
Hide file tree
Showing 11 changed files with 23 additions and 14 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,16 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## Unreleased

[Full Changelog](https://github.com/facebook/facebook-ios-sdk/compare/v5.8.0...HEAD)
[Full Changelog](https://github.com/facebook/facebook-ios-sdk/compare/v5.9.0...HEAD)

## 5.9.0

[2019-10-29](https://github.com/facebook/facebook-ios-sdk/releases/tag/v5.9.0) |
[Full Changelog](https://github.com/facebook/facebook-ios-sdk/compare/v5.8.0...v5.9.0)

### Changed

- Using Graph API version 5.0

## 5.8.0

Expand Down
2 changes: 1 addition & 1 deletion Configurations/Version.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

// The versions for FBSDK and Messenger SDK.
FBSDK_PROJECT_VERSION=5.8.0
FBSDK_PROJECT_VERSION=5.9.0
MNSDK_PROJECT_VERSION=TODO_SUPPORT_MNSDK

2 changes: 1 addition & 1 deletion FBSDKCoreKit.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Pod::Spec.new do |s|

s.name = 'FBSDKCoreKit'
s.version = '5.8.0'
s.version = '5.9.0'
s.summary = 'Official Facebook SDK for iOS to access Facebook Platform core features'

s.description = <<-DESC
Expand Down
4 changes: 2 additions & 2 deletions FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,5 +52,5 @@
#import "FBSDKDeviceViewControllerBase.h"
#endif

#define FBSDK_VERSION_STRING @"5.8.0"
#define FBSDK_TARGET_PLATFORM_VERSION @"v4.0"
#define FBSDK_VERSION_STRING @"5.9.0"
#define FBSDK_TARGET_PLATFORM_VERSION @"v5.0"
6 changes: 3 additions & 3 deletions FBSDKCoreKit/FBSDKCoreKitTests/FBSDKGraphRequestTests.m
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#import "FBSDKUtility.h"

static NSString *const _mockGraphPath = @"me";
static NSString *const _mockDefaultVersion = @"v4.0";
static NSString *const _mockDefaultVersion = @"v5.0";
static NSString *const _mockPrefix = @"graph.";
static NSDictionary<NSString *, NSString *> *const _mockParameters(void)
{
Expand Down Expand Up @@ -162,12 +162,12 @@ - (void)testSerializeURL
params:_mockParameters()
httpMethod:FBSDKHTTPMethodPOST
forBatch:YES];
NSString *expectedURL = @"https://graph.facebook.com/v4.0/me?fields=";
NSString *expectedURL = @"https://graph.facebook.com/v5.0/me?fields=";

XCTAssertEqualObjects(url, expectedURL);

// Test URLEncode and URLDecode
NSString *expectedEncodedURL = @"https%3A%2F%2Fgraph.facebook.com%2Fv4.0%2Fme%3Ffields%3D";
NSString *expectedEncodedURL = @"https%3A%2F%2Fgraph.facebook.com%2Fv5.0%2Fme%3Ffields%3D";
NSString *encodedSerializedURL = [FBSDKUtility URLEncode:expectedURL];

XCTAssertEqualObjects(encodedSerializedURL, expectedEncodedURL);
Expand Down
2 changes: 1 addition & 1 deletion FBSDKLoginKit.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Pod::Spec.new do |s|

s.name = 'FBSDKLoginKit'
s.version = '5.8.0'
s.version = '5.9.0'
s.summary = 'Official Facebook SDK for iOS to access Facebook Platform with features like Login, Share and Message Dialog, App Links, and Graph API'

s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion FBSDKMarketingKit.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'FBSDKMarketingKit'
s.version = '5.8.0'
s.version = '5.9.0'
s.summary = 'Official Facebook SDK for iOS to set up Codeless Events'

s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion FBSDKPlacesKit.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Pod::Spec.new do |s|

s.name = 'FBSDKPlacesKit'
s.version = '5.8.0'
s.version = '5.9.0'
s.summary = 'Official Facebook SDK for iOS to access Facebook Places'

s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion FBSDKShareKit.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Pod::Spec.new do |s|

s.name = 'FBSDKShareKit'
s.version = '5.8.0'
s.version = '5.9.0'
s.summary = 'Official Facebook SDK for iOS to access Facebook Platform Sharing Features'

s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion FBSDKTVOSKit.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Pod::Spec.new do |s|

s.name = 'FBSDKTVOSKit'
s.version = '5.8.0'
s.version = '5.9.0'
s.summary = 'Official Facebook SDK for tvOS to access Facebook Platform with features like Login and Graph API.'

s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion FacebookSDK.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Pod::Spec.new do |s|

s.name = 'FacebookSDK'
s.version = '5.8.0'
s.version = '5.9.0'
s.summary = 'Official Facebook SDK for iOS to access Facebook Platform'

s.description = <<-DESC
Expand Down

0 comments on commit b726001

Please sign in to comment.