From 87d8a606a8dd50a8ba2290940359f69d0ce71dae Mon Sep 17 00:00:00 2001 From: Cody Winton Date: Tue, 2 Apr 2019 17:25:20 -0700 Subject: [PATCH] Bump Version 5.0.0-rc.1 Summary: Bumped version for first 5.0 RC Reviewed By: dreamolight Differential Revision: D14718312 fbshipit-source-id: 91522df58a87efd015f3458f506ba052310e8a39 --- CHANGELOG.md | 7 ++++++- Configurations/Version.xcconfig | 2 +- FBSDKCoreKit.podspec | 2 +- FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit.h | 2 +- FBSDKLoginKit.podspec | 4 ++-- FBSDKMarketingKit.podspec | 4 ++-- FBSDKPlacesKit.podspec | 4 ++-- FBSDKShareKit.podspec | 4 ++-- FBSDKTVOSKit.podspec | 8 ++++---- FacebookSDK.podspec | 14 +++++++------- 10 files changed, 28 insertions(+), 23 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1b786f2b3..ab5c39318 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## Unreleased -[Full Changelog](https://github.com/facebook/facebook-objc-sdk/compare/v4.43.0...HEAD) +[Full Changelog](https://github.com/facebook/facebook-objc-sdk/compare/v5.0.0-rc.1...HEAD) + +## 5.0.0-rc.1 + +[2019-04-01](https://github.com/facebook/facebook-objc-sdk/releases/tag/v5.0.0-rc.1) | +[Full Changelog](https://github.com/facebook/facebook-objc-sdk/compare/v4.43.0...v5.0.0-rc.1) ### Added diff --git a/Configurations/Version.xcconfig b/Configurations/Version.xcconfig index 5730aa094..edac2ee47 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=4.43.0 +FBSDK_PROJECT_VERSION=5.0.0-rc.1 MNSDK_PROJECT_VERSION=TODO_SUPPORT_MNSDK diff --git a/FBSDKCoreKit.podspec b/FBSDKCoreKit.podspec index 126392130..bb34a36a2 100644 --- a/FBSDKCoreKit.podspec +++ b/FBSDKCoreKit.podspec @@ -3,7 +3,7 @@ Pod::Spec.new do |s| s.name = 'FBSDKCoreKit' - s.version = '4.43.0' + s.version = '5.0.0-rc.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 6ce7eefd3..0a72c2d6e 100644 --- a/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit.h +++ b/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit.h @@ -52,5 +52,5 @@ #import #endif -#define FBSDK_VERSION_STRING @"4.43.0" +#define FBSDK_VERSION_STRING @"5.0.0-rc.1" #define FBSDK_TARGET_PLATFORM_VERSION @"v3.2" diff --git a/FBSDKLoginKit.podspec b/FBSDKLoginKit.podspec index f1e4fb4c9..0c1524036 100644 --- a/FBSDKLoginKit.podspec +++ b/FBSDKLoginKit.podspec @@ -3,7 +3,7 @@ Pod::Spec.new do |s| s.name = 'FBSDKLoginKit' - s.version = '4.43.0' + s.version = '5.0.0-rc.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 @@ -30,7 +30,7 @@ Pod::Spec.new do |s| s.requires_arc = true - s.dependency 'FBSDKCoreKit' + s.dependency 'FBSDKCoreKit', "#{s.version}" s.ios.source_files = 'FBSDKLoginKit/FBSDKLoginKit/**/*.{h,m}' s.ios.public_header_files = 'FBSDKLoginKit/FBSDKLoginKit/*.{h}' diff --git a/FBSDKMarketingKit.podspec b/FBSDKMarketingKit.podspec index 277768254..ee34cb838 100644 --- a/FBSDKMarketingKit.podspec +++ b/FBSDKMarketingKit.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'FBSDKMarketingKit' - s.version = '4.43.0' + s.version = '5.0.0-rc.1' s.summary = 'Official Facebook SDK for iOS to set up Codeless Events' s.description = <<-DESC @@ -40,5 +40,5 @@ Pod::Spec.new do |s| s.ios.deployment_target = '8.0' - s.ios.dependency 'FBSDKCoreKit' + s.ios.dependency 'FBSDKCoreKit', "#{s.version}" end diff --git a/FBSDKPlacesKit.podspec b/FBSDKPlacesKit.podspec index a26e9da90..22084d60a 100644 --- a/FBSDKPlacesKit.podspec +++ b/FBSDKPlacesKit.podspec @@ -3,7 +3,7 @@ Pod::Spec.new do |s| s.name = 'FBSDKPlacesKit' - s.version = '4.43.0' + s.version = '5.0.0-rc.1' s.summary = 'Official Facebook SDK for iOS to access Facebook Places' s.description = <<-DESC @@ -29,6 +29,6 @@ Pod::Spec.new do |s| s.source_files = 'FBSDKPlacesKit/FBSDKPlacesKit/**/*.{h,m}' s.public_header_files = 'FBSDKPlacesKit/FBSDKPlacesKit/*.{h}' - s.dependency 'FBSDKCoreKit' + s.dependency 'FBSDKCoreKit', "#{s.version}" end diff --git a/FBSDKShareKit.podspec b/FBSDKShareKit.podspec index 2b35dbcb1..9d9c1eb44 100644 --- a/FBSDKShareKit.podspec +++ b/FBSDKShareKit.podspec @@ -3,7 +3,7 @@ Pod::Spec.new do |s| s.name = 'FBSDKShareKit' - s.version = '4.43.0' + s.version = '5.0.0-rc.1' s.summary = 'Official Facebook SDK for iOS to access Facebook Platform Sharing Features' s.description = <<-DESC @@ -31,7 +31,7 @@ Pod::Spec.new do |s| s.requires_arc = true s.header_dir = 'FBSDKShareKit' - s.dependency 'FBSDKCoreKit' + s.dependency 'FBSDKCoreKit', "#{s.version}" s.public_header_files = 'FBSDKShareKit/FBSDKShareKit/*.{h}' s.ios.source_files = 'FBSDKShareKit/FBSDKShareKit/**/*.{h,m}' diff --git a/FBSDKTVOSKit.podspec b/FBSDKTVOSKit.podspec index 961342d29..43af91da2 100644 --- a/FBSDKTVOSKit.podspec +++ b/FBSDKTVOSKit.podspec @@ -3,7 +3,7 @@ Pod::Spec.new do |s| s.name = 'FBSDKTVOSKit' - s.version = '4.43.0' + s.version = '5.0.0-rc.1' s.summary = 'Official Facebook SDK for tvOS to access Facebook Platform with features like Login and Graph API.' s.description = <<-DESC @@ -26,8 +26,8 @@ Pod::Spec.new do |s| s.public_header_files = 'FBSDKTVOSKit/FBSDKTVOSKit/*.h' s.header_dir = 'FBSDKTVOSKit' - s.dependency 'FBSDKCoreKit' + s.dependency 'FBSDKCoreKit', "#{s.version}" # We have a compile time depend on FBSDKShareKit - s.dependency 'FBSDKShareKit' - s.dependency 'FBSDKLoginKit' + s.dependency 'FBSDKShareKit', "#{s.version}" + s.dependency 'FBSDKLoginKit', "#{s.version}" end diff --git a/FacebookSDK.podspec b/FacebookSDK.podspec index d5c7e02e8..d9893ae76 100644 --- a/FacebookSDK.podspec +++ b/FacebookSDK.podspec @@ -3,7 +3,7 @@ Pod::Spec.new do |s| s.name = 'FacebookSDK' - s.version = '4.43.0' + s.version = '5.0.0-rc.1' s.summary = 'Official Facebook SDK for iOS to access Facebook Platform' s.description = <<-DESC @@ -32,30 +32,30 @@ Pod::Spec.new do |s| s.default_subspecs = 'CoreKit', 'MarketingKit' s.subspec 'CoreKit' do |ss| - ss.dependency 'FBSDKCoreKit' + ss.dependency 'FBSDKCoreKit', "#{s.version}" end s.subspec 'LoginKit' do |ss| ss.dependency 'FacebookSDK/CoreKit' - ss.dependency 'FBSDKLoginKit' + ss.dependency 'FBSDKLoginKit', "#{s.version}" end s.subspec 'ShareKit' do |ss| ss.dependency 'FacebookSDK/CoreKit' - ss.dependency 'FBSDKShareKit' + ss.dependency 'FBSDKShareKit', "#{s.version}" end s.subspec 'TVOSKit' do |ss| ss.platform = :tvos ss.dependency 'FacebookSDK/ShareKit' ss.dependency 'FacebookSDK/LoginKit' - ss.dependency 'FBSDKTVOSKit' + ss.dependency 'FBSDKTVOSKit', "#{s.version}" end s.subspec 'PlacesKit' do |ss| ss.platform = :ios ss.dependency 'FacebookSDK/CoreKit' - ss.dependency 'FBSDKPlacesKit' + ss.dependency 'FBSDKPlacesKit', "#{s.version}" end s.subspec 'MarketingKit' do |ss| ss.platform = :ios ss.dependency 'FacebookSDK/CoreKit' - ss.dependency 'FBSDKMarketingKit' + ss.dependency 'FBSDKMarketingKit', "#{s.version}" end end