Skip to content

Commit 3f16e95

Browse files
author
Edward Smith
committed
Release 0.25.5.
1 parent 5d41090 commit 3f16e95

File tree

13 files changed

+41
-30
lines changed

13 files changed

+41
-30
lines changed

Branch-SDK/Branch-SDK/BNCConfig.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
BOOL const BNC_API_PINNED = YES;
1313
NSString * const BNC_API_VERSION = @"v1";
1414
NSString * const BNC_LINK_URL = @"https://bnc.lt";
15-
NSString * const BNC_SDK_VERSION = @"0.25.4";
15+
NSString * const BNC_SDK_VERSION = @"0.25.5";

Branch-TestBed/Framework-Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
<key>CFBundlePackageType</key>
1818
<string>FMWK</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>0.25.4</string>
20+
<string>0.25.5</string>
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleVersion</key>
24-
<string>0.25.4</string>
24+
<string>0.25.5</string>
2525
<key>LSRequiresIPhoneOS</key>
2626
<true/>
2727
<key>NSHumanReadableCopyright</key>

Branch.framework/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
<key>CFBundlePackageType</key>
1818
<string>FMWK</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>0.25.3</string>
20+
<string>0.25.5</string>
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleVersion</key>
24-
<string>0.25.3</string>
24+
<string>0.25.5</string>
2525
<key>LSRequiresIPhoneOS</key>
2626
<true/>
2727
<key>NSHumanReadableCopyright</key>

Branch.framework/Versions/A/Branch

37.5 KB
Binary file not shown.

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

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
Indicates this link is being used to trigger a deal, like a discounted rate.
6767
6868
`BRANCH_FEATURE_TAG_GIFT`
69-
Indicates this link is being used to sned a gift to another user.
69+
Indicates this link is being used to send a gift to another user.
7070
*/
7171
extern NSString * const BRANCH_FEATURE_TAG_SHARE;
7272
extern NSString * const BRANCH_FEATURE_TAG_REFERRAL;
@@ -1631,7 +1631,23 @@ typedef NS_ENUM(NSUInteger, BranchCreditHistoryOrder) {
16311631
- (void) sendServerRequest:(BNCServerRequest*)request;
16321632
- (void) sendServerRequestWithoutSession:(BNCServerRequest*)request;
16331633

1634+
/**
1635+
This is the block that is called each time a new Branch session is started. It is automatically set
1636+
when Branch is initialized with `initSessionWithLaunchOptions:andRegisterDeepLinkHandler`.
1637+
*/
1638+
@property (copy, nonatomic) void(^ sessionInitWithParamsCallback) (NSDictionary * params, NSError * error);
1639+
1640+
/**
1641+
This is the block that is called each time a new Branch session is started. It is automatically set
1642+
when Branch is initialized with `initSessionWithLaunchOptions:andRegisterDeepLinkHandlerUsingBranchUniversalObject`.
1643+
1644+
The difference with this callback from `sessionInitWithParamsCallback` is that it is called with a
1645+
BranchUniversalObject.
1646+
*/
1647+
@property (copy, nonatomic) void (^ sessionInitWithBranchUniversalObjectCallback)
1648+
(BranchUniversalObject * universalObject, BranchLinkProperties * linkProperties, NSError * error);
1649+
16341650
// Read-only property exposed for unit testing.
1635-
@property (strong, readonly) BNCServerInterface *serverInterface;
1651+
@property (strong, readonly) BNCServerInterface* serverInterface;
16361652
- (void) clearNetworkQueue;
16371653
@end

Branch.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 = "Branch"
3-
s.version = "0.25.4"
3+
s.version = "0.25.5"
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?

ChangeLog.md

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

3-
- v0.25.4
4-
* QA Release - September 11, 2018
3+
- v0.25.5
4+
* _*Master Release*_ - September 14, 2018
55
* Added Apple Reminders as a scraper to prevent deferred linking (DEVEX-775).
66
* Fixed some Infer code analyzer warnings (DEVEX-774).
77
* iOS 12 Preparation (DEVEX-739).
@@ -12,6 +12,9 @@ Branch iOS SDK Change Log
1212
* Made the session callback block publicly settable for more flexible app integrations.
1313
* Updated the documentation as needed.
1414

15+
- v0.25.4
16+
* Release preparation - September 11, 2018
17+
1518
- v0.25.3
1619
* _*Master Release*_ - August 13, 2018
1720
* Fixed an occasional double app open from being sent to Branch.

Examples/UITestBed/UITestBed.xcodeproj/project.pbxproj

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,6 @@
7070
4DC00B3820A0A1C2002E68CD /* UITestEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DC00B3720A0A1C2002E68CD /* UITestEvents.m */; };
7171
4DC00B4020A0A214002E68CD /* UITestSafari.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DC00B3F20A0A214002E68CD /* UITestSafari.m */; };
7272
4DC00B4320A0C5F4002E68CD /* TBSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DC00B4220A0C5F4002E68CD /* TBSettings.m */; };
73-
4DED488D209BDEB9008DE877 /* OCMock.framework in CopyFiles */ = {isa = PBXBuildFile; fileRef = 4DED488B209BDEB9008DE877 /* OCMock.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
74-
4DED488E209BDEB9008DE877 /* OHHTTPStubs.framework in CopyFiles */ = {isa = PBXBuildFile; fileRef = 4DED488C209BDEB9008DE877 /* OHHTTPStubs.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
7573
4DFF2B6E1EEF3B150043F840 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DFF2B6D1EEF3B150043F840 /* main.m */; };
7674
4DFF2B711EEF3B150043F840 /* TBAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DFF2B701EEF3B150043F840 /* TBAppDelegate.m */; };
7775
4DFF2B741EEF3B150043F840 /* TBBranchViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DFF2B731EEF3B150043F840 /* TBBranchViewController.m */; };
@@ -713,7 +711,6 @@
713711
GCC_C_LANGUAGE_STANDARD = gnu11;
714712
HEADER_SEARCH_PATHS = "../../Branch-SDK/Branch-SDK/**";
715713
INFOPLIST_FILE = "../../Branch-SDK-Tests/Branch-SDK-Tests/Info.plist";
716-
IPHONEOS_DEPLOYMENT_TARGET = 11.3;
717714
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
718715
PRODUCT_BUNDLE_IDENTIFIER = "io.branch.Branch-SDK-Tests";
719716
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -739,7 +736,6 @@
739736
GCC_C_LANGUAGE_STANDARD = gnu11;
740737
HEADER_SEARCH_PATHS = "../../Branch-SDK/Branch-SDK/**";
741738
INFOPLIST_FILE = "../../Branch-SDK-Tests/Branch-SDK-Tests/Info.plist";
742-
IPHONEOS_DEPLOYMENT_TARGET = 11.3;
743739
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
744740
PRODUCT_BUNDLE_IDENTIFIER = "io.branch.Branch-SDK-Tests";
745741
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -762,7 +758,6 @@
762758
DEVELOPMENT_TEAM = 3ZNSRC9M83;
763759
GCC_C_LANGUAGE_STANDARD = gnu11;
764760
INFOPLIST_FILE = "UITestBed-UITests/Info.plist";
765-
IPHONEOS_DEPLOYMENT_TARGET = 11.3;
766761
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
767762
PRODUCT_BUNDLE_IDENTIFIER = "io.branch.UITestBed-UITests";
768763
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -782,7 +777,6 @@
782777
DEVELOPMENT_TEAM = 3ZNSRC9M83;
783778
GCC_C_LANGUAGE_STANDARD = gnu11;
784779
INFOPLIST_FILE = "UITestBed-UITests/Info.plist";
785-
IPHONEOS_DEPLOYMENT_TARGET = 11.3;
786780
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
787781
PRODUCT_BUNDLE_IDENTIFIER = "io.branch.UITestBed-UITests";
788782
PRODUCT_NAME = "$(TARGET_NAME)";

Examples/WebViewExample/Podfile

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,11 @@ platform :ios, '9.0'
1111

1212
# ----- Application target
1313

14-
target "WebViewExample" do
14+
target 'WebViewExample' do
1515
project 'WebViewExample'
1616
pod 'Branch', path: "../.."
17-
# ----- Other app dependencies
18-
pod "Cartography"
19-
pod "MBProgressHUD"
20-
# pod "TextAttributes"
17+
pod 'Cartography', '3.0.1'
18+
pod 'MBProgressHUD'
2119
end
2220

2321
# Add custom configurations. This informs CocoaPods that Test-Debug should be treated like

Examples/WebViewExample/Podfile.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ PODS:
22
- Branch (0.25.4):
33
- Branch/Core (= 0.25.4)
44
- Branch/Core (0.25.4)
5-
- Cartography (3.0.2)
5+
- Cartography (3.0.1)
66
- MBProgressHUD (1.1.0)
77

88
DEPENDENCIES:
99
- Branch (from `../..`)
10-
- Cartography
10+
- Cartography (= 3.0.1)
1111
- MBProgressHUD
1212

1313
SPEC REPOS:
@@ -21,9 +21,9 @@ EXTERNAL SOURCES:
2121

2222
SPEC CHECKSUMS:
2323
Branch: ee6880f3b6a5ac811d81614d9af8c622ad60f60d
24-
Cartography: 231190d7d0b3107ce8d67c54189f059a509b3760
24+
Cartography: f8c899bb0f5cf20758644a8eea59a75e98a03a5d
2525
MBProgressHUD: e7baa36a220447d8aeb12769bf0585582f3866d9
2626

27-
PODFILE CHECKSUM: 11c87f21f32687c987839149b04678394af64cd8
27+
PODFILE CHECKSUM: bf289083f1ca29886678c9be37dab8ad91e204d4
2828

2929
COCOAPODS: 1.6.0.beta.1

0 commit comments

Comments
 (0)