Skip to content

Commit 5f6642f

Browse files
committed
Prep patch release 1.2.5
1 parent 65041bc commit 5f6642f

File tree

8 files changed

+304
-56
lines changed

8 files changed

+304
-56
lines changed

Branch.xcodeproj/project.pbxproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -872,7 +872,7 @@
872872
CODE_SIGN_IDENTITY = "Apple Development";
873873
CODE_SIGN_STYLE = Automatic;
874874
DEVELOPMENT_TEAM = R63EM248DP;
875-
MARKETING_VERSION = 1.2.4;
875+
MARKETING_VERSION = 1.2.5;
876876
PRODUCT_BUNDLE_IDENTIFIER = io.branch.sdk.mac;
877877
PROVISIONING_PROFILE_SPECIFIER = "";
878878
};
@@ -884,7 +884,7 @@
884884
CODE_SIGN_IDENTITY = "Apple Development";
885885
CODE_SIGN_STYLE = Automatic;
886886
DEVELOPMENT_TEAM = R63EM248DP;
887-
MARKETING_VERSION = 1.2.4;
887+
MARKETING_VERSION = 1.2.5;
888888
PRODUCT_BUNDLE_IDENTIFIER = io.branch.sdk.mac;
889889
PROVISIONING_PROFILE_SPECIFIER = "";
890890
};
@@ -972,7 +972,7 @@
972972
CODE_SIGN_IDENTITY = "Apple Development";
973973
CODE_SIGN_STYLE = Automatic;
974974
DEVELOPMENT_TEAM = R63EM248DP;
975-
MARKETING_VERSION = 1.2.4;
975+
MARKETING_VERSION = 1.2.5;
976976
PRODUCT_BUNDLE_IDENTIFIER = io.branch.sdk.mac;
977977
PROVISIONING_PROFILE_SPECIFIER = "";
978978
};

CHANGELOG.md

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

3+
## v1.2.5 - Oct 8, 2020
4+
* Allow short link generation when tracking is disabled
5+
36
## v1.2.4 - June 17, 2020
47
* Remove certificate pinning
58

47.7 KB
Binary file not shown.

Frameworks/macOS/Branch.framework/Versions/A/Headers/Branch.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ FOUNDATION_EXPORT const unsigned char BranchVersionString[];
2626
#import <Branch/BranchMutableDictionary.h>
2727
#import <Branch/BranchSession.h>
2828
#import <Branch/BranchUniversalObject.h>
29-
#import <Branch/UIViewController+Branch.h>
3029

3130
// Exposed private headers:
3231
#import <Branch/BNCLog.h>

Frameworks/macOS/Branch.framework/Versions/A/Headers/BranchHeader.h

Lines changed: 3 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -17,26 +17,10 @@
1717
#import <Foundation/Foundation.h>
1818
#endif
1919

20-
#if TARGET_OS_OSX
21-
22-
#if __has_feature(modules)
23-
@import AppKit;
24-
#else
25-
#import <AppKit/Appkit.h>
26-
#endif
27-
28-
#elif TARGET_OS_IPHONE
29-
30-
#if __has_feature(modules)
31-
@import UIKit;
32-
#else
33-
#import <UIKit/UIKit.h>
34-
#endif
35-
20+
#if __has_feature(modules)
21+
@import AppKit;
3622
#else
37-
38-
#error Unknown compile target.
39-
23+
#import <AppKit/Appkit.h>
4024
#endif
4125

4226
#endif // BranchHeader_h

Frameworks/macOS/Branch.framework/Versions/A/Headers/UIViewController+Branch.h

Lines changed: 0 additions & 26 deletions
This file was deleted.

Frameworks/macOS/Branch.framework/Versions/A/Resources/Info.plist

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<plist version="1.0">
44
<dict>
55
<key>BuildMachineOSBuild</key>
6-
<string>19F101</string>
6+
<string>19H2</string>
77
<key>CFBundleDevelopmentRegion</key>
88
<string>en</string>
99
<key>CFBundleExecutable</key>
@@ -17,7 +17,7 @@
1717
<key>CFBundlePackageType</key>
1818
<string>FMWK</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>1.2.4</string>
20+
<string>1.2.5</string>
2121
<key>CFBundleSupportedPlatforms</key>
2222
<array>
2323
<string>MacOSX</string>
@@ -27,17 +27,19 @@
2727
<key>DTCompiler</key>
2828
<string>com.apple.compilers.llvm.clang.1_0</string>
2929
<key>DTPlatformBuild</key>
30-
<string>11E608c</string>
30+
<string>12A7300</string>
31+
<key>DTPlatformName</key>
32+
<string>macosx</string>
3133
<key>DTPlatformVersion</key>
32-
<string>GM</string>
34+
<string>10.15.6</string>
3335
<key>DTSDKBuild</key>
34-
<string>19E258</string>
36+
<string>19G68</string>
3537
<key>DTSDKName</key>
3638
<string>macosx10.15</string>
3739
<key>DTXcode</key>
38-
<string>1150</string>
40+
<string>1201</string>
3941
<key>DTXcodeBuild</key>
40-
<string>11E608c</string>
42+
<string>12A7300</string>
4143
<key>LSMinimumSystemVersion</key>
4244
<string>10.10</string>
4345
<key>NSHumanReadableCopyright</key>

0 commit comments

Comments
 (0)