From ad850211b5b9aaec2355d18b4ecb6c0f481448e2 Mon Sep 17 00:00:00 2001 From: Zilin Zhang Date: Fri, 5 Feb 2021 16:44:08 -0800 Subject: [PATCH] Bump version 9.0.1 Summary: As title Reviewed By: joesus Differential Revision: D26215176 fbshipit-source-id: 19c0291c6cdb2fa678d90d852be8015501284b63 --- CHANGELOG.md | 21 ++++++++++++++++++- Configurations/Version.xcconfig | 2 +- FBSDKCoreKit.podspec | 2 +- FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit.h | 2 +- FBSDKGamingServicesKit.podspec | 2 +- FBSDKLoginKit.podspec | 2 +- FBSDKShareKit.podspec | 2 +- FBSDKTVOSKit.podspec | 2 +- FacebookSDK.podspec | 2 +- .../FBSDKCoreKit_Basics/FBSDKCrashHandler.m | 2 +- 10 files changed, 29 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7202681cf4..bb81accd0b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,26 @@ 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.0...HEAD) +[Full Changelog](https://github.com/facebook/facebook-ios-sdk/compare/v9.0.1...HEAD) + +## 9.0.1 + +### Added + +- Add control support for the key FacebookSKAdNetworkReportEnabled in the info.plist +- Add APIs to control SKAdNetwork Report + +### Fixed + +- Fix deadlock issue between SKAdNetwork Report and AAM/Codeless +- Fix default ATE sync for the first app launch +- Fix build error caused by LoginButton nonce property ([@kmcbride](https://github.com/kmcbride) in [#1616](https://github.com/facebook/facebook-ios-sdk/pull/1616)) +- Fix crash on FBSDKWebViewAppLinkResolverWebViewDelegate ([@Kry256](https://github.com/Kry256) in [#1624](https://github.com/facebook/facebook-ios-sdk/pull/1624)) +- Fix XCFrameworks build issue (#1628) +- Fix deadlock when AppEvents ActivateApp is called without initializing the SDK (#1636) + +[2021-02-02](https://github.com/facebook/facebook-ios-sdk/releases/tag/v9.0.1) | +[Full Changelog](https://github.com/facebook/facebook-ios-sdk/compare/v9.0.0...v9.0.1) ## 9.0.0 diff --git a/Configurations/Version.xcconfig b/Configurations/Version.xcconfig index 4e608d3987..3d9f65868d 100644 --- a/Configurations/Version.xcconfig +++ b/Configurations/Version.xcconfig @@ -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.0 +FBSDK_PROJECT_VERSION=9.0.1 MNSDK_PROJECT_VERSION=TODO_SUPPORT_MNSDK diff --git a/FBSDKCoreKit.podspec b/FBSDKCoreKit.podspec index 1035be353a..af72b2245f 100644 --- a/FBSDKCoreKit.podspec +++ b/FBSDKCoreKit.podspec @@ -3,7 +3,7 @@ Pod::Spec.new do |s| s.name = 'FBSDKCoreKit' - s.version = '9.0.0' + s.version = '9.0.1' s.summary = 'Official Facebook SDK for iOS to access Facebook Platform core features' s.description = <<-DESC diff --git a/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit.h b/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit.h index 8a283ed7e9..944032d8e4 100644 --- a/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit.h +++ b/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit.h @@ -96,5 +96,5 @@ #endif -#define FBSDK_VERSION_STRING @"9.0.0" +#define FBSDK_VERSION_STRING @"9.0.1" #define FBSDK_TARGET_PLATFORM_VERSION @"v9.0" diff --git a/FBSDKGamingServicesKit.podspec b/FBSDKGamingServicesKit.podspec index 3b8dac826b..1ba2cd5e58 100644 --- a/FBSDKGamingServicesKit.podspec +++ b/FBSDKGamingServicesKit.podspec @@ -3,7 +3,7 @@ Pod::Spec.new do |s| s.name = 'FBSDKGamingServicesKit' - s.version = '9.0.0' + s.version = '9.0.1' s.summary = 'Official Facebook SDK for iOS to access Facebook Gaming Services' s.description = <<-DESC diff --git a/FBSDKLoginKit.podspec b/FBSDKLoginKit.podspec index 2e3403f525..b03b647b8b 100644 --- a/FBSDKLoginKit.podspec +++ b/FBSDKLoginKit.podspec @@ -3,7 +3,7 @@ Pod::Spec.new do |s| s.name = 'FBSDKLoginKit' - s.version = '9.0.0' + s.version = '9.0.1' 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 diff --git a/FBSDKShareKit.podspec b/FBSDKShareKit.podspec index fc062cb2b9..a505450f3a 100644 --- a/FBSDKShareKit.podspec +++ b/FBSDKShareKit.podspec @@ -3,7 +3,7 @@ Pod::Spec.new do |s| s.name = 'FBSDKShareKit' - s.version = '9.0.0' + s.version = '9.0.1' s.summary = 'Official Facebook SDK for iOS to access Facebook Platform Sharing Features' s.description = <<-DESC diff --git a/FBSDKTVOSKit.podspec b/FBSDKTVOSKit.podspec index 16099ab9cd..a76ce99921 100644 --- a/FBSDKTVOSKit.podspec +++ b/FBSDKTVOSKit.podspec @@ -3,7 +3,7 @@ Pod::Spec.new do |s| s.name = 'FBSDKTVOSKit' - s.version = '9.0.0' + s.version = '9.0.1' s.summary = 'Official Facebook SDK for tvOS to access Facebook Platform with features like Login and Graph API.' s.description = <<-DESC diff --git a/FacebookSDK.podspec b/FacebookSDK.podspec index ed90f22fdc..e3a22c889a 100644 --- a/FacebookSDK.podspec +++ b/FacebookSDK.podspec @@ -3,7 +3,7 @@ Pod::Spec.new do |s| s.name = 'FacebookSDK' - s.version = '9.0.0' + s.version = '9.0.1' s.summary = 'Official Facebook SDK for iOS to access Facebook Platform' s.description = <<-DESC diff --git a/Sources/FBSDKCoreKit_Basics/FBSDKCrashHandler.m b/Sources/FBSDKCoreKit_Basics/FBSDKCrashHandler.m index e7c2b3a401..5d4b602795 100644 --- a/Sources/FBSDKCoreKit_Basics/FBSDKCrashHandler.m +++ b/Sources/FBSDKCoreKit_Basics/FBSDKCrashHandler.m @@ -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.0" + #define FBSDK_VERSION_STRING @"9.0.1" #endif static NSUncaughtExceptionHandler *previousExceptionHandler = NULL;