diff --git a/BranchSDK.podspec b/BranchSDK.podspec index e3ac3012a..2898b3515 100644 --- a/BranchSDK.podspec +++ b/BranchSDK.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "BranchSDK" - s.version = "3.13.0" + s.version = "3.13.1" 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 f476be8d1..0d5a9bdbd 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.0; + MARKETING_VERSION = 3.13.1; OTHER_LDFLAGS = ( "-weak_framework", LinkPresentation, @@ -2051,7 +2051,7 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MARKETING_VERSION = 3.13.0; + MARKETING_VERSION = 3.13.1; OTHER_LDFLAGS = ( "-weak_framework", LinkPresentation, @@ -2257,7 +2257,7 @@ "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MARKETING_VERSION = 3.13.0; + MARKETING_VERSION = 3.13.1; OTHER_LDFLAGS = ( "-weak_framework", LinkPresentation, @@ -2296,7 +2296,7 @@ "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MARKETING_VERSION = 3.13.0; + MARKETING_VERSION = 3.13.1; OTHER_LDFLAGS = ( "-weak_framework", LinkPresentation, @@ -2333,7 +2333,7 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MARKETING_VERSION = 3.13.0; + MARKETING_VERSION = 3.13.1; OTHER_LDFLAGS = ( "-weak_framework", LinkPresentation, @@ -2368,7 +2368,7 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MARKETING_VERSION = 3.13.0; + MARKETING_VERSION = 3.13.1; OTHER_LDFLAGS = ( "-weak_framework", LinkPresentation, diff --git a/ChangeLog.md b/ChangeLog.md index e28279f2f..b9d193cd4 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,5 +1,9 @@ Branch iOS SDK Change Log +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. + v.3.13.0 - Added API 'setAnonID' to set custom Meta Anon ID for the current user. - Added API 'setSDKWaitTimeForThirdPartyAPIs' to set time for which SDK will wait for fetching data from third-party APIs, such as ODM info and Apple Attribution Token. diff --git a/Sources/BranchSDK/BNCConfig.m b/Sources/BranchSDK/BNCConfig.m index 757bf0e2a..a4e323657 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.0"; +NSString * const BNC_SDK_VERSION = @"3.13.1"; NSString * const BNC_LINK_URL = @"https://bnc.lt"; NSString * const BNC_CDN_URL = @"https://cdn.branch.io"; diff --git a/scripts/version.sh b/scripts/version.sh index 3accb15cd..cbbb5959c 100755 --- a/scripts/version.sh +++ b/scripts/version.sh @@ -30,7 +30,7 @@ Options: USAGE } -version=3.13.0 +version=3.13.1 prev_version="$version" if (( $# == 0 )); then