From c3391d5d17bd61c41caf466beec4f5ad273b02f7 Mon Sep 17 00:00:00 2001 From: echo Date: Wed, 3 Apr 2024 15:02:29 -0700 Subject: [PATCH 1/2] Prep release --- BranchSDK.podspec | 2 +- BranchSDK.xcodeproj/project.pbxproj | 12 ++++++------ ChangeLog.md | 7 +++++++ Sources/BranchSDK/BNCConfig.m | 2 +- scripts/version.sh | 2 +- 5 files changed, 16 insertions(+), 9 deletions(-) diff --git a/BranchSDK.podspec b/BranchSDK.podspec index 2eed7fba7..650b427be 100644 --- a/BranchSDK.podspec +++ b/BranchSDK.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "BranchSDK" - s.version = "3.4.0" + s.version = "3.4.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 de8d1fda2..ad11710ee 100644 --- a/BranchSDK.xcodeproj/project.pbxproj +++ b/BranchSDK.xcodeproj/project.pbxproj @@ -1974,7 +1974,7 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MARKETING_VERSION = 3.4.0; + MARKETING_VERSION = 3.4.1; OTHER_LDFLAGS = ( "-weak_framework", LinkPresentation, @@ -2009,7 +2009,7 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MARKETING_VERSION = 3.4.0; + MARKETING_VERSION = 3.4.1; OTHER_LDFLAGS = ( "-weak_framework", LinkPresentation, @@ -2215,7 +2215,7 @@ "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MARKETING_VERSION = 3.4.0; + MARKETING_VERSION = 3.4.1; OTHER_LDFLAGS = ( "-weak_framework", LinkPresentation, @@ -2254,7 +2254,7 @@ "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MARKETING_VERSION = 3.4.0; + MARKETING_VERSION = 3.4.1; OTHER_LDFLAGS = ( "-weak_framework", LinkPresentation, @@ -2291,7 +2291,7 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MARKETING_VERSION = 3.4.0; + MARKETING_VERSION = 3.4.1; OTHER_LDFLAGS = ( "-weak_framework", LinkPresentation, @@ -2326,7 +2326,7 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MARKETING_VERSION = 3.4.0; + MARKETING_VERSION = 3.4.1; OTHER_LDFLAGS = ( "-weak_framework", LinkPresentation, diff --git a/ChangeLog.md b/ChangeLog.md index 8f88503ce..f0dac21d8 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,5 +1,12 @@ Branch iOS SDK Change Log +v.3.4.0 +- Fix cold link launch when using deferred initialization and an AppDelegate only app. +- Fix cocoapods privacy manifest collision. +- Fix error recovery serialization. +- Update logs with more appropriate log levels. +- Pass back underlying Network NSErrors that cause the SDK to give up. + v.3.4.0 - Added support for setting the Branch API base URL through the `branch.json` file. diff --git a/Sources/BranchSDK/BNCConfig.m b/Sources/BranchSDK/BNCConfig.m index 7335edabc..402dd3036 100644 --- a/Sources/BranchSDK/BNCConfig.m +++ b/Sources/BranchSDK/BNCConfig.m @@ -8,7 +8,7 @@ #include "BNCConfig.h" -NSString * const BNC_SDK_VERSION = @"3.4.0"; +NSString * const BNC_SDK_VERSION = @"3.4.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 d0934f33b..38156bf72 100755 --- a/scripts/version.sh +++ b/scripts/version.sh @@ -30,7 +30,7 @@ Options: USAGE } -version=3.4.0 +version=3.4.1 prev_version="$version" if (( $# == 0 )); then From 13cdb6fb8e8f8c2aea77e44d74e5d95cf02b1195 Mon Sep 17 00:00:00 2001 From: echo Date: Wed, 3 Apr 2024 15:36:10 -0700 Subject: [PATCH 2/2] Fix typo in changelog --- ChangeLog.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ChangeLog.md b/ChangeLog.md index f0dac21d8..006580c56 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,6 +1,6 @@ Branch iOS SDK Change Log -v.3.4.0 +v.3.4.1 - Fix cold link launch when using deferred initialization and an AppDelegate only app. - Fix cocoapods privacy manifest collision. - Fix error recovery serialization.