diff --git a/CHANGELOG.md b/CHANGELOG.md index b50214c567..be609e6ab0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,7 +12,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), v7.0 will drop support for Xcode versions below 11. This is in line with [Apple's plans](https://developer.apple.com/news/?id=03262020b) to disallow submission of Apps that do not include the iOS 13 SDK. This means that from v7.0 on, all SDK kits will be built using Xcode 11 and Swift 5.1. -[Full Changelog](https://github.com/facebook/facebook-ios-sdk/compare/v6.5.1...HEAD) +[Full Changelog](https://github.com/facebook/facebook-ios-sdk/compare/v6.5.2...HEAD) + +## 6.5.2 + +- Various bug fixes + +[2020-04-29](https://github.com/facebook/facebook-ios-sdk/releases/tag/v6.5.2) | +[Full Changelog](https://github.com/facebook/facebook-ios-sdk/compare/v6.5.1...v6.5.2) ## 6.5.1 diff --git a/Configurations/Version.xcconfig b/Configurations/Version.xcconfig index 409f3986b6..a1ea838d8e 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=6.5.1 +FBSDK_PROJECT_VERSION=6.5.2 MNSDK_PROJECT_VERSION=TODO_SUPPORT_MNSDK diff --git a/FBSDKCoreKit.podspec b/FBSDKCoreKit.podspec index 7fa43ba8ad..12dea6d295 100644 --- a/FBSDKCoreKit.podspec +++ b/FBSDKCoreKit.podspec @@ -3,7 +3,7 @@ Pod::Spec.new do |s| s.name = 'FBSDKCoreKit' - s.version = '6.5.1' + s.version = '6.5.2' s.summary = 'Official Facebook SDK for iOS to access Facebook Platform core features' s.description = <<-DESC diff --git a/FBSDKCoreKit/FBSDKCoreKit/Basics/Instrument/FBSDKCrashHandler.m b/FBSDKCoreKit/FBSDKCoreKit/Basics/Instrument/FBSDKCrashHandler.m index 87d846505e..4da7ad8630 100644 --- a/FBSDKCoreKit/FBSDKCoreKit/Basics/Instrument/FBSDKCrashHandler.m +++ b/FBSDKCoreKit/FBSDKCoreKit/Basics/Instrument/FBSDKCrashHandler.m @@ -29,7 +29,7 @@ #define FBSDK_MAX_CRASH_LOGS 5 #define FBSDK_CRASH_PATH_NAME @"instrument" #ifndef FBSDK_VERSION_STRING -#define FBSDK_VERSION_STRING @"6.5.1" +#define FBSDK_VERSION_STRING @"6.5.2" #endif static NSUncaughtExceptionHandler *previousExceptionHandler = NULL; diff --git a/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit.h b/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit.h index 9443deb3fb..341ebf724d 100644 --- a/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit.h +++ b/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit.h @@ -92,5 +92,5 @@ #endif -#define FBSDK_VERSION_STRING @"6.5.1" +#define FBSDK_VERSION_STRING @"6.5.2" #define FBSDK_TARGET_PLATFORM_VERSION @"v6.0" diff --git a/FBSDKGamingServicesKit.podspec b/FBSDKGamingServicesKit.podspec index 3903e231cf..e600fc4423 100644 --- a/FBSDKGamingServicesKit.podspec +++ b/FBSDKGamingServicesKit.podspec @@ -3,7 +3,7 @@ Pod::Spec.new do |s| s.name = 'FBSDKGamingServicesKit' - s.version = '6.5.1' + s.version = '6.5.2' s.summary = 'Official Facebook SDK for iOS to access Facebook Gaming Services' s.description = <<-DESC diff --git a/FBSDKLoginKit.podspec b/FBSDKLoginKit.podspec index ce6805080a..9e220897fa 100644 --- a/FBSDKLoginKit.podspec +++ b/FBSDKLoginKit.podspec @@ -3,7 +3,7 @@ Pod::Spec.new do |s| s.name = 'FBSDKLoginKit' - s.version = '6.5.1' + s.version = '6.5.2' 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/FBSDKMarketingKit.podspec b/FBSDKMarketingKit.podspec index b8083b4ddd..ae140fc6be 100644 --- a/FBSDKMarketingKit.podspec +++ b/FBSDKMarketingKit.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'FBSDKMarketingKit' - s.version = '6.5.1' + s.version = '6.5.2' s.summary = 'Official Facebook SDK for iOS to set up Codeless Events' s.description = <<-DESC diff --git a/FBSDKShareKit.podspec b/FBSDKShareKit.podspec index 5fee5446a6..085076d0b1 100644 --- a/FBSDKShareKit.podspec +++ b/FBSDKShareKit.podspec @@ -3,7 +3,7 @@ Pod::Spec.new do |s| s.name = 'FBSDKShareKit' - s.version = '6.5.1' + s.version = '6.5.2' 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 667f9c95d4..8dbcf915c6 100644 --- a/FBSDKTVOSKit.podspec +++ b/FBSDKTVOSKit.podspec @@ -3,7 +3,7 @@ Pod::Spec.new do |s| s.name = 'FBSDKTVOSKit' - s.version = '6.5.1' + s.version = '6.5.2' 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 f9f686406a..bb74fd4c07 100644 --- a/FacebookSDK.podspec +++ b/FacebookSDK.podspec @@ -3,7 +3,7 @@ Pod::Spec.new do |s| s.name = 'FacebookSDK' - s.version = '6.5.1' + s.version = '6.5.2' s.summary = 'Official Facebook SDK for iOS to access Facebook Platform' s.description = <<-DESC