Skip to content

Commit ca99836

Browse files
authored
Release 3.9 (#1475)
Version (3.9) and Change Log Updates
1 parent db47af2 commit ca99836

File tree

5 files changed

+20
-9
lines changed

5 files changed

+20
-9
lines changed

BranchSDK.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "BranchSDK"
3-
s.version = "3.8.0"
3+
s.version = "3.9.0"
44
s.summary = "Create an HTTP URL for any piece of content in your app"
55
s.description = <<-DESC
66
- Want the highest possible conversions on your sharing feature?

BranchSDK.xcodeproj/project.pbxproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1988,7 +1988,7 @@
19881988
"@executable_path/Frameworks",
19891989
"@loader_path/Frameworks",
19901990
);
1991-
MARKETING_VERSION = 3.8.0;
1991+
MARKETING_VERSION = 3.9.0;
19921992
OTHER_LDFLAGS = (
19931993
"-weak_framework",
19941994
LinkPresentation,
@@ -2023,7 +2023,7 @@
20232023
"@executable_path/Frameworks",
20242024
"@loader_path/Frameworks",
20252025
);
2026-
MARKETING_VERSION = 3.8.0;
2026+
MARKETING_VERSION = 3.9.0;
20272027
OTHER_LDFLAGS = (
20282028
"-weak_framework",
20292029
LinkPresentation,
@@ -2229,7 +2229,7 @@
22292229
"@loader_path/Frameworks",
22302230
);
22312231
MACH_O_TYPE = staticlib;
2232-
MARKETING_VERSION = 3.8.0;
2232+
MARKETING_VERSION = 3.9.0;
22332233
OTHER_LDFLAGS = (
22342234
"-weak_framework",
22352235
LinkPresentation,
@@ -2268,7 +2268,7 @@
22682268
"@loader_path/Frameworks",
22692269
);
22702270
MACH_O_TYPE = staticlib;
2271-
MARKETING_VERSION = 3.8.0;
2271+
MARKETING_VERSION = 3.9.0;
22722272
OTHER_LDFLAGS = (
22732273
"-weak_framework",
22742274
LinkPresentation,
@@ -2305,7 +2305,7 @@
23052305
"@executable_path/Frameworks",
23062306
"@loader_path/Frameworks",
23072307
);
2308-
MARKETING_VERSION = 3.8.0;
2308+
MARKETING_VERSION = 3.9.0;
23092309
OTHER_LDFLAGS = (
23102310
"-weak_framework",
23112311
LinkPresentation,
@@ -2340,7 +2340,7 @@
23402340
"@executable_path/Frameworks",
23412341
"@loader_path/Frameworks",
23422342
);
2343-
MARKETING_VERSION = 3.8.0;
2343+
MARKETING_VERSION = 3.9.0;
23442344
OTHER_LDFLAGS = (
23452345
"-weak_framework",
23462346
LinkPresentation,

ChangeLog.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
Branch iOS SDK Change Log
22

3+
v.3.9.0
4+
- 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
5+
- Fixed Integration Validator crash when URIs and bundle ids from the server are empty.
6+
- Removed extra macros for tvOS check in umbrella header which were causing compiliation error in hybrid apps.
7+
- Fixed Init Race for Push notifications
8+
- Fixed issue which was not sending linking request when tracking is disabled and app is launched via spotlight results.
9+
- Added test apps for Mobileboost.
10+
- Added GHA for Mobileboost.
11+
- Fix for early branch init on install.
12+
- Fixed compilation error for enableLoggingAtLevel API when used without callback.
13+
314
v.3.8.0
415
- Added new `BranchAdvancedLogCallback` which contains request and response data for Branch network requests
516
- Added ability to set Consumer Protection Attribution Level through the `branch.json` file

Sources/BranchSDK/BNCConfig.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#include "BNCConfig.h"
1010

11-
NSString * const BNC_SDK_VERSION = @"3.8.0";
11+
NSString * const BNC_SDK_VERSION = @"3.9.0";
1212
NSString * const BNC_LINK_URL = @"https://bnc.lt";
1313
NSString * const BNC_CDN_URL = @"https://cdn.branch.io";
1414

scripts/version.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Options:
3030
USAGE
3131
}
3232

33-
version=3.8.0
33+
version=3.9.0
3434
prev_version="$version"
3535

3636
if (( $# == 0 )); then

0 commit comments

Comments
 (0)