Skip to content

Commit 75f8624

Browse files
committed
Release 0.29.2.
1 parent 8da5e9a commit 75f8624

File tree

10 files changed

+23
-11
lines changed

10 files changed

+23
-11
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 = NO;
1313
NSString * const BNC_API_VERSION = @"v1";
1414
NSString * const BNC_LINK_URL = @"https://bnc.lt";
15-
NSString * const BNC_SDK_VERSION = @"0.29.1";
15+
NSString * const BNC_SDK_VERSION = @"0.29.2";

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.29.1</string>
20+
<string>0.29.2</string>
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleVersion</key>
24-
<string>0.29.1</string>
24+
<string>0.29.2</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.29.1</string>
20+
<string>0.29.2</string>
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleVersion</key>
24-
<string>0.29.1</string>
24+
<string>0.29.2</string>
2525
<key>LSRequiresIPhoneOS</key>
2626
<true/>
2727
<key>NSHumanReadableCopyright</key>

Branch.framework/Versions/A/Branch

100 KB
Binary file not shown.

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.29.1"
3+
s.version = "0.29.2"
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: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
Branch iOS SDK Change Log
22

3+
- v0.29.2
4+
* _*Master Release*_ - Oct 16, 2019
5+
* SDK-550 add Tune data check
6+
37
- v0.29.1
48
* _*Master Release*_ - Oct 4, 2019
59
* SDK-517 fix nullability warnings

carthage-files/BranchSDK.xcodeproj/project.pbxproj

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,8 @@
9797
5FB6D3D923219B48006C5094 /* BNCAppleReceipt.m in Sources */ = {isa = PBXBuildFile; fileRef = 5FB6D3D523219B48006C5094 /* BNCAppleReceipt.m */; platformFilter = ios; };
9898
5FB6D3DD23219C46006C5094 /* BNCThreads.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FB6D3DB23219C46006C5094 /* BNCThreads.h */; platformFilter = ios; };
9999
5FB6D3DE23219C46006C5094 /* BNCThreads.m in Sources */ = {isa = PBXBuildFile; fileRef = 5FB6D3DC23219C46006C5094 /* BNCThreads.m */; platformFilter = ios; };
100+
5FC09DCE235790B8009D4098 /* BNCTuneUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 5FC09DCC235790B8009D4098 /* BNCTuneUtility.m */; };
101+
5FC09DCF235790B8009D4098 /* BNCTuneUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FC09DCD235790B8009D4098 /* BNCTuneUtility.h */; };
100102
7DA3BF1D1D889CE500CA8AE0 /* BranchContentDiscoverer.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DA3BF171D889CE500CA8AE0 /* BranchContentDiscoverer.m */; platformFilter = ios; };
101103
7DA3BF1E1D889CE500CA8AE0 /* BranchContentDiscoverer.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DA3BF181D889CE500CA8AE0 /* BranchContentDiscoverer.h */; platformFilter = ios; };
102104
7DA3BF1F1D889CE500CA8AE0 /* BranchContentDiscoveryManifest.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DA3BF191D889CE500CA8AE0 /* BranchContentDiscoveryManifest.h */; platformFilter = ios; };
@@ -228,6 +230,8 @@
228230
5FB6D3D523219B48006C5094 /* BNCAppleReceipt.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BNCAppleReceipt.m; sourceTree = "<group>"; };
229231
5FB6D3DB23219C46006C5094 /* BNCThreads.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BNCThreads.h; sourceTree = "<group>"; };
230232
5FB6D3DC23219C46006C5094 /* BNCThreads.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BNCThreads.m; sourceTree = "<group>"; };
233+
5FC09DCC235790B8009D4098 /* BNCTuneUtility.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BNCTuneUtility.m; sourceTree = "<group>"; };
234+
5FC09DCD235790B8009D4098 /* BNCTuneUtility.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BNCTuneUtility.h; sourceTree = "<group>"; };
231235
7DA3BF171D889CE500CA8AE0 /* BranchContentDiscoverer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BranchContentDiscoverer.m; sourceTree = "<group>"; };
232236
7DA3BF181D889CE500CA8AE0 /* BranchContentDiscoverer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BranchContentDiscoverer.h; sourceTree = "<group>"; };
233237
7DA3BF191D889CE500CA8AE0 /* BranchContentDiscoveryManifest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BranchContentDiscoveryManifest.h; sourceTree = "<group>"; };
@@ -345,6 +349,8 @@
345349
E230A1141D03DB9E006181D8 /* Branch-SDK */ = {
346350
isa = PBXGroup;
347351
children = (
352+
5FC09DCD235790B8009D4098 /* BNCTuneUtility.h */,
353+
5FC09DCC235790B8009D4098 /* BNCTuneUtility.m */,
348354
5F9071CF233D6033003AACAD /* BNCJSONUtility.h */,
349355
5F9071D0233D6034003AACAD /* BNCJSONUtility.m */,
350356
5F9071C2233D5FD5003AACAD /* BranchCrossPlatformID.h */,
@@ -477,6 +483,7 @@
477483
4DCF4B001F438A2B00AF9AAB /* BNCError.h in Headers */,
478484
5F9071C6233D5FD5003AACAD /* BranchCrossPlatformID.h in Headers */,
479485
E230A1751D03DB9E006181D8 /* BNCLinkCache.h in Headers */,
486+
5FC09DCF235790B8009D4098 /* BNCTuneUtility.h in Headers */,
480487
5FB6D3D723219B48006C5094 /* BNCUserAgentCollector.h in Headers */,
481488
4DCF4B011F438A2B00AF9AAB /* BNCLog.h in Headers */,
482489
E230A1771D03DB9E006181D8 /* BNCLinkData.h in Headers */,
@@ -618,6 +625,7 @@
618625
4DAB17AD1EE8A31B0079EEB4 /* BranchInstallRequest.m in Sources */,
619626
4DAB17A11EE8A31B0079EEB4 /* BNCServerInterface.m in Sources */,
620627
5FB6D3D923219B48006C5094 /* BNCAppleReceipt.m in Sources */,
628+
5FC09DCE235790B8009D4098 /* BNCTuneUtility.m in Sources */,
621629
4DAB179E1EE8A31B0079EEB4 /* BNCNetworkService.m in Sources */,
622630
5F9071CD233D5FE4003AACAD /* BranchCPIDRequest.m in Sources */,
623631
5F9071CB233D5FE4003AACAD /* BranchLATDRequest.m in Sources */,

carthage-files/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>0.29.1</string>
18+
<string>0.29.2</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>0.29.1</string>
22+
<string>0.29.2</string>
2323
<key>NSPrincipalClass</key>
2424
<string></string>
2525
</dict>

checksum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#checksum for Branch-iOS-SDK found at https://s3-us-west-1.amazonaws.com/branchhost/Branch-iOS-SDK.zip
2-
6c3a94a57c5a223b6328d19e9e1cb9a23529b408 Branch-iOS-SDK.zip
2+
eddbee5abea5f320d782289420c43bd6cb53df49 Branch-iOS-SDK.zip
33
#checksum for Branch-iOS-TestBed found at https://s3-us-west-1.amazonaws.com/branchhost/Branch-iOS-TestBed.zip
4-
dc41a77f4025b13721958b8baf5addf07252858e Branch-iOS-TestBed.zip
4+
4427847424521f63165ad7a1a6fe49bba0e7ca09 Branch-iOS-TestBed.zip

scripts/version

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

34-
version=0.29.1
34+
version=0.29.2
3535

3636
if (( $# == 0 )); then
3737
echo $version

0 commit comments

Comments
 (0)