Skip to content

Commit

Permalink
CORE-1830 prep 1.39.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
echo-branch committed Mar 26, 2021
1 parent 8baabaf commit a0988f0
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 13 deletions.
2 changes: 1 addition & 1 deletion Branch-SDK/BNCConfig.m
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
NSString * const BNC_API_BASE_URL = @"https://api2.branch.io";
NSString * const BNC_API_VERSION = @"v1";
NSString * const BNC_LINK_URL = @"https://bnc.lt";
NSString * const BNC_SDK_VERSION = @"1.39.1";
NSString * const BNC_SDK_VERSION = @"1.39.2";
2 changes: 1 addition & 1 deletion Branch-SDK/BNCSystemObserver.m
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ + (NSString *)attOptedInStatus {
return statusString;
}

// on iOS 14+ this value is always NO
// this value is deprecated on iOS 14+
+ (BOOL)adTrackingSafe {
#ifdef BRANCH_EXCLUDE_IDFA_CODE
return NO;
Expand Down
4 changes: 2 additions & 2 deletions Branch-TestBed/Framework-Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.39.1</string>
<string>1.39.2</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.39.1</string>
<string>1.39.2</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSHumanReadableCopyright</key>
Expand Down
2 changes: 1 addition & 1 deletion Branch.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "Branch"
s.version = "1.39.1"
s.version = "1.39.2"
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
8 changes: 7 additions & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
Branch iOS SDK Change Log

v1.39.2
CORE-1768 Add 'handleATTAuthorizationStatus' method to monitor ATT prompt performance.

Pass the AppTrackingTransparency authorization status from the callback of ATTrackingManager.requestTrackingAuthorization.
Before prompting the user, check that ATTrackingManager.trackingAuthorizationStatus is notDetermined.

v1.39.1
CORE-1769
Fix podspec AdServices.framework issue. This addresses a crash on launch for older iOS versions.
Fix podspec AdServices.framework issue. This addresses a crash on launch for older iOS versions.

CORE-1766
First time opt in indicator. Reduces load on the server.
Expand Down
12 changes: 6 additions & 6 deletions carthage-files/BranchSDK.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1589,7 +1589,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.39.1;
MARKETING_VERSION = 1.39.2;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
ONLY_ACTIVE_ARCH = YES;
Expand Down Expand Up @@ -1629,7 +1629,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.39.1;
MARKETING_VERSION = 1.39.2;
MTL_FAST_MATH = YES;
ONLY_ACTIVE_ARCH = NO;
PRODUCT_BUNDLE_IDENTIFIER = io.branch.Branch;
Expand Down Expand Up @@ -1665,7 +1665,7 @@
);
MACH_O_TYPE = staticlib;
MACOSX_DEPLOYMENT_TARGET = 10.15;
MARKETING_VERSION = 1.39.1;
MARKETING_VERSION = 1.39.2;
ONLY_ACTIVE_ARCH = YES;
OTHER_LDFLAGS = "-ObjC";
PRODUCT_BUNDLE_IDENTIFIER = io.branch.Branch;
Expand Down Expand Up @@ -1698,7 +1698,7 @@
);
MACH_O_TYPE = staticlib;
MACOSX_DEPLOYMENT_TARGET = 10.15;
MARKETING_VERSION = 1.39.1;
MARKETING_VERSION = 1.39.2;
ONLY_ACTIVE_ARCH = NO;
OTHER_LDFLAGS = "-ObjC";
PRODUCT_BUNDLE_IDENTIFIER = io.branch.Branch;
Expand Down Expand Up @@ -1857,7 +1857,7 @@
"@loader_path/Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.15;
MARKETING_VERSION = 1.39.1;
MARKETING_VERSION = 1.39.2;
ONLY_ACTIVE_ARCH = YES;
OTHER_LDFLAGS = "-ObjC";
PRODUCT_BUNDLE_IDENTIFIER = io.branch.Branch;
Expand Down Expand Up @@ -1888,7 +1888,7 @@
"@loader_path/Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.15;
MARKETING_VERSION = 1.39.1;
MARKETING_VERSION = 1.39.2;
ONLY_ACTIVE_ARCH = NO;
OTHER_LDFLAGS = "-ObjC";
PRODUCT_BUNDLE_IDENTIFIER = io.branch.Branch;
Expand Down
2 changes: 1 addition & 1 deletion scripts/version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Options:
USAGE
}

version=1.39.1
version=1.39.2

if (( $# == 0 )); then
echo $version
Expand Down

0 comments on commit a0988f0

Please sign in to comment.