From 9344f88e350d1b889ad9334457471abf4ddc68f7 Mon Sep 17 00:00:00 2001 From: NidhiDixit09 <93544270+NidhiDixit09@users.noreply.github.com> Date: Wed, 23 Oct 2024 12:33:05 -0700 Subject: [PATCH] Version Update for Release 3.6.5 and deleted unused code. --- BranchSDK.podspec | 2 +- BranchSDK.xcodeproj/project.pbxproj | 12 ++++++------ ChangeLog.md | 3 +++ Sources/BranchSDK/BNCConfig.m | 2 +- Sources/BranchSDK/BNCServerRequestQueue.m | 5 ----- scripts/version.sh | 2 +- 6 files changed, 12 insertions(+), 14 deletions(-) diff --git a/BranchSDK.podspec b/BranchSDK.podspec index 992acfaf1..e93954983 100644 --- a/BranchSDK.podspec +++ b/BranchSDK.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "BranchSDK" - s.version = "3.6.4" + s.version = "3.6.5" 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 7219bec79..4472d5212 100644 --- a/BranchSDK.xcodeproj/project.pbxproj +++ b/BranchSDK.xcodeproj/project.pbxproj @@ -1974,7 +1974,7 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MARKETING_VERSION = 3.6.4; + MARKETING_VERSION = 3.6.5; OTHER_LDFLAGS = ( "-weak_framework", LinkPresentation, @@ -2009,7 +2009,7 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MARKETING_VERSION = 3.6.4; + MARKETING_VERSION = 3.6.5; OTHER_LDFLAGS = ( "-weak_framework", LinkPresentation, @@ -2215,7 +2215,7 @@ "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MARKETING_VERSION = 3.6.4; + MARKETING_VERSION = 3.6.5; OTHER_LDFLAGS = ( "-weak_framework", LinkPresentation, @@ -2254,7 +2254,7 @@ "@loader_path/Frameworks", ); MACH_O_TYPE = staticlib; - MARKETING_VERSION = 3.6.4; + MARKETING_VERSION = 3.6.5; OTHER_LDFLAGS = ( "-weak_framework", LinkPresentation, @@ -2291,7 +2291,7 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MARKETING_VERSION = 3.6.4; + MARKETING_VERSION = 3.6.5; OTHER_LDFLAGS = ( "-weak_framework", LinkPresentation, @@ -2326,7 +2326,7 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MARKETING_VERSION = 3.6.4; + MARKETING_VERSION = 3.6.5; OTHER_LDFLAGS = ( "-weak_framework", LinkPresentation, diff --git a/ChangeLog.md b/ChangeLog.md index e18e5141c..8996557c5 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,5 +1,8 @@ Branch iOS SDK Change Log +v.3.6.5 +- Removed on-disk caching and replay of server request objects. + v.3.6.4 - Added 'branch_sdk_request_unique_id' and 'branch_sdk_request_timestamp' to post params of all the SDK requests. diff --git a/Sources/BranchSDK/BNCConfig.m b/Sources/BranchSDK/BNCConfig.m index a2c0f2342..47cd61fdd 100644 --- a/Sources/BranchSDK/BNCConfig.m +++ b/Sources/BranchSDK/BNCConfig.m @@ -8,7 +8,7 @@ #include "BNCConfig.h" -NSString * const BNC_SDK_VERSION = @"3.6.4"; +NSString * const BNC_SDK_VERSION = @"3.6.5"; NSString * const BNC_LINK_URL = @"https://bnc.lt"; NSString * const BNC_CDN_URL = @"https://cdn.branch.io"; diff --git a/Sources/BranchSDK/BNCServerRequestQueue.m b/Sources/BranchSDK/BNCServerRequestQueue.m index bbdebed25..c518fccce 100755 --- a/Sources/BranchSDK/BNCServerRequestQueue.m +++ b/Sources/BranchSDK/BNCServerRequestQueue.m @@ -17,11 +17,6 @@ #import "BranchLogger.h" -static inline uint64_t BNCNanoSecondsFromTimeInterval(NSTimeInterval interval) { - return interval * ((NSTimeInterval) NSEC_PER_SEC); -} - - @interface BNCServerRequestQueue() @property (strong, nonatomic) NSMutableArray *queue; @end diff --git a/scripts/version.sh b/scripts/version.sh index f1ba477db..f83d5093d 100755 --- a/scripts/version.sh +++ b/scripts/version.sh @@ -30,7 +30,7 @@ Options: USAGE } -version=3.6.4 +version=3.6.5 prev_version="$version" if (( $# == 0 )); then