Skip to content

Commit

Permalink
Bump Version 9.1.0
Browse files Browse the repository at this point in the history
Summary: $title

Reviewed By: jingping2015

Differential Revision: D26674136

fbshipit-source-id: fad0fddb08af475a8ee6f3ae58daafc915edaa5d
  • Loading branch information
joesus authored and facebook-github-bot committed Feb 27, 2021
1 parent 391eb52 commit 0546204
Show file tree
Hide file tree
Showing 10 changed files with 33 additions and 10 deletions.
25 changes: 24 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,30 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

### Important

[Full Changelog](https://github.com/facebook/facebook-ios-sdk/compare/v9.0.1...HEAD)
[Full Changelog](https://github.com/facebook/facebook-ios-sdk/compare/v9.1.0...HEAD)

## 9.1.0

### Fixed

- Build Warnings for SPM with Xcode 12.5 Beta 2 [#1661](https://github.com/facebook/facebook-ios-sdk/pull/1661)
- Memory leak in `FBSDKGraphErrorRecoveryProcessor`
- Name conflict for Swift version of `FBSDKURLSessionTask`
- Avoids call to `AppEvents` singleton when setting overriding app ID [#1647](https://github.com/facebook/facebook-ios-sdk/pull/1647)
- CocoaPods now compiles `FBSDKDynamicFrameworkLoader` with ARC.
- CocoaPods now uses static frameworks as the prebuilt libraries for the aggregate FacebookSDK podspec

### Deprecated

- `FBSDKGraphErrorRecoveryProcessor`'s `delegate` property
- `FBSDKGraphErrorRecoveryProcessor`'s `didPresentErrorWithRecovery:contextInfo:` method

### Removed

- Internal type `FBSDKErrorRecoveryAttempter`

[2021-02-25](https://github.com/facebook/facebook-ios-sdk/releases/tag/v9.1.0) |
[Full Changelog](https://github.com/facebook/facebook-ios-sdk/compare/v9.0.1...v9.1.0)

## 9.0.1

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=9.0.1
FBSDK_PROJECT_VERSION=9.1.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 = '9.0.1'
s.version = '9.1.0'
s.summary = 'Official Facebook SDK for iOS to access Facebook Platform core features'

s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit.h
Original file line number Diff line number Diff line change
Expand Up @@ -95,5 +95,5 @@

#endif

#define FBSDK_VERSION_STRING @"9.0.1"
#define FBSDK_VERSION_STRING @"9.1.0"
#define FBSDK_TARGET_PLATFORM_VERSION @"v9.0"
2 changes: 1 addition & 1 deletion FBSDKGamingServicesKit.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Pod::Spec.new do |s|

s.name = 'FBSDKGamingServicesKit'
s.version = '9.0.1'
s.version = '9.1.0'
s.summary = 'Official Facebook SDK for iOS to access Facebook Gaming Services'

s.description = <<-DESC
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 = '9.0.1'
s.version = '9.1.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 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 = '9.0.1'
s.version = '9.1.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 = '9.0.1'
s.version = '9.1.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 = '9.0.1'
s.version = '9.1.0'
s.summary = 'Official Facebook SDK for iOS to access Facebook Platform'

s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion Sources/FBSDKCoreKit_Basics/FBSDKCrashHandler.m
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
#define FBSDK_MAX_CRASH_LOGS 5
#define FBSDK_CRASH_PATH_NAME @"instrument"
#ifndef FBSDK_VERSION_STRING
#define FBSDK_VERSION_STRING @"9.0.1"
#define FBSDK_VERSION_STRING @"9.1.0"
#endif

static NSUncaughtExceptionHandler *previousExceptionHandler = NULL;
Expand Down

0 comments on commit 0546204

Please sign in to comment.