diff --git a/BranchSDK.podspec b/BranchSDK.podspec index 2898b3515..83c5d7c85 100644 --- a/BranchSDK.podspec +++ b/BranchSDK.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "BranchSDK" - s.version = "3.13.1" + s.version = "3.13.2" s.summary = "Create an HTTP URL for any piece of content in your app" s.description = <<-DESC - Want the highest possible conversions on your sharing feature? diff --git a/BranchSDK.xcodeproj/project.pbxproj b/BranchSDK.xcodeproj/project.pbxproj index 0d5a9bdbd..10442810c 100644 --- a/BranchSDK.xcodeproj/project.pbxproj +++ b/BranchSDK.xcodeproj/project.pbxproj @@ -2016,7 +2016,7 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MARKETING_VERSION = 3.13.1; + MARKETING_VERSION = 3.13.2; OTHER_LDFLAGS = ( "-weak_framework", LinkPresentation, @@ -2051,7 +2051,7 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MARKETING_VERSION = 3.13.1; + MARKETING_VERSION = 3.13.2; OTHER_LDFLAGS = ( "-weak_framework", LinkPresentation, @@ -2257,7 +2257,7 @@ "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MARKETING_VERSION = 3.13.1; + MARKETING_VERSION = 3.13.2; OTHER_LDFLAGS = ( "-weak_framework", LinkPresentation, @@ -2296,7 +2296,7 @@ "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MARKETING_VERSION = 3.13.1; + MARKETING_VERSION = 3.13.2; OTHER_LDFLAGS = ( "-weak_framework", LinkPresentation, @@ -2333,7 +2333,7 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MARKETING_VERSION = 3.13.1; + MARKETING_VERSION = 3.13.2; OTHER_LDFLAGS = ( "-weak_framework", LinkPresentation, @@ -2368,7 +2368,7 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MARKETING_VERSION = 3.13.1; + MARKETING_VERSION = 3.13.2; OTHER_LDFLAGS = ( "-weak_framework", LinkPresentation, diff --git a/ChangeLog.md b/ChangeLog.md index b9d193cd4..fe21bbd45 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,5 +1,10 @@ Branch iOS SDK Change Log +v.3.13.2 +— Suppressed deprecated StoreKit API warnings. These APIs will be replaced with StoreKit 2 APIs in upcoming releases. +— Added defensive fix to improve reliability of NSInvocation calls. +— Added some additional debug logging API. + v.3.13.1 - SDK Request Queue will not cache request objects failed with Https Response Codes - 1xx, 2xx, 3xx and 4xx. - Fixed bug - SDK will send odm_info if Consumer Protection Attribution Level is not set or is set to Full. diff --git a/Sources/BranchSDK/BNCConfig.m b/Sources/BranchSDK/BNCConfig.m index a4e323657..11aa56a30 100644 --- a/Sources/BranchSDK/BNCConfig.m +++ b/Sources/BranchSDK/BNCConfig.m @@ -8,7 +8,7 @@ #include "BNCConfig.h" -NSString * const BNC_SDK_VERSION = @"3.13.1"; +NSString * const BNC_SDK_VERSION = @"3.13.2"; NSString * const BNC_LINK_URL = @"https://bnc.lt"; NSString * const BNC_CDN_URL = @"https://cdn.branch.io"; diff --git a/Sources/BranchSDK/Public/BNCCallbacks.h b/Sources/BranchSDK/Public/BNCCallbacks.h index 4c2ff7484..d2ee8d24e 100644 --- a/Sources/BranchSDK/Public/BNCCallbacks.h +++ b/Sources/BranchSDK/Public/BNCCallbacks.h @@ -21,4 +21,4 @@ typedef void (^callbackWithList) (NSArray * _Nullable list, NSError * _Nullable typedef void (^callbackWithUrlAndSpotlightIdentifier) (NSString * _Nullable url, NSString * _Nullable spotlightIdentifier, NSError * _Nullable error); typedef void (^callbackWithBranchUniversalObject) (BranchUniversalObject * _Nullable universalObject, BranchLinkProperties * _Nullable linkProperties, NSError * _Nullable error); typedef void (^callbackWithData) (NSData * _Nullable data, NSError * _Nullable error); -typedef void (^callbackForTracingRequests) ( NSString * _Nullable url, NSDictionary * _Nullable request, NSDictionary * _Nullable response, NSError * _Nullable error, NSString * requestServiceURL); +typedef void (^callbackForTracingRequests) ( NSString * _Nullable url, NSDictionary * _Nullable request, NSDictionary * _Nullable response, NSError * _Nullable error, NSString * _Nullable requestServiceURL); diff --git a/scripts/version.sh b/scripts/version.sh index cbbb5959c..d7d1dc16d 100755 --- a/scripts/version.sh +++ b/scripts/version.sh @@ -30,7 +30,7 @@ Options: USAGE } -version=3.13.1 +version=3.13.2 prev_version="$version" if (( $# == 0 )); then