Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion BranchSDK.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "BranchSDK"
s.version = "3.8.0"
s.version = "3.9.0"
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?
Expand Down
12 changes: 6 additions & 6 deletions BranchSDK.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1988,7 +1988,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 3.8.0;
MARKETING_VERSION = 3.9.0;
OTHER_LDFLAGS = (
"-weak_framework",
LinkPresentation,
Expand Down Expand Up @@ -2023,7 +2023,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 3.8.0;
MARKETING_VERSION = 3.9.0;
OTHER_LDFLAGS = (
"-weak_framework",
LinkPresentation,
Expand Down Expand Up @@ -2229,7 +2229,7 @@
"@loader_path/Frameworks",
);
MACH_O_TYPE = staticlib;
MARKETING_VERSION = 3.8.0;
MARKETING_VERSION = 3.9.0;
OTHER_LDFLAGS = (
"-weak_framework",
LinkPresentation,
Expand Down Expand Up @@ -2268,7 +2268,7 @@
"@loader_path/Frameworks",
);
MACH_O_TYPE = staticlib;
MARKETING_VERSION = 3.8.0;
MARKETING_VERSION = 3.9.0;
OTHER_LDFLAGS = (
"-weak_framework",
LinkPresentation,
Expand Down Expand Up @@ -2305,7 +2305,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 3.8.0;
MARKETING_VERSION = 3.9.0;
OTHER_LDFLAGS = (
"-weak_framework",
LinkPresentation,
Expand Down Expand Up @@ -2340,7 +2340,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 3.8.0;
MARKETING_VERSION = 3.9.0;
OTHER_LDFLAGS = (
"-weak_framework",
LinkPresentation,
Expand Down
11 changes: 11 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
Branch iOS SDK Change Log

v.3.9.0
- Integration Validator 2.0 - Improved integration validator to provide references to how to fix when a check fails, export logs from the app and invoke it using query parameter
- Fixed Integration Validator crash when URIs and bundle ids from the server are empty.
- Removed extra macros for tvOS check in umbrella header which were causing compiliation error in hybrid apps.
- Fixed Init Race for Push notifications
- Fixed issue which was not sending linking request when tracking is disabled and app is launched via spotlight results.
- Added test apps for Mobileboost.
- Added GHA for Mobileboost.
- Fix for early branch init on install.
- Fixed compilation error for enableLoggingAtLevel API when used without callback.

v.3.8.0
- Added new `BranchAdvancedLogCallback` which contains request and response data for Branch network requests
- Added ability to set Consumer Protection Attribution Level through the `branch.json` file
Expand Down
2 changes: 1 addition & 1 deletion Sources/BranchSDK/BNCConfig.m
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

#include "BNCConfig.h"

NSString * const BNC_SDK_VERSION = @"3.8.0";
NSString * const BNC_SDK_VERSION = @"3.9.0";
NSString * const BNC_LINK_URL = @"https://bnc.lt";
NSString * const BNC_CDN_URL = @"https://cdn.branch.io";

Expand Down
2 changes: 1 addition & 1 deletion scripts/version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Options:
USAGE
}

version=3.8.0
version=3.9.0
prev_version="$version"

if (( $# == 0 )); then
Expand Down
Loading