Skip to content

Commit

Permalink
Release 0.25.10.
Browse files Browse the repository at this point in the history
  • Loading branch information
echo-branch committed Dec 12, 2018
1 parent f5fe3e0 commit b2831b1
Show file tree
Hide file tree
Showing 10 changed files with 32 additions and 13 deletions.
2 changes: 1 addition & 1 deletion Branch-SDK/Branch-SDK/BNCConfig.m
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
BOOL const BNC_API_PINNED = YES;
NSString * const BNC_API_VERSION = @"v1";
NSString * const BNC_LINK_URL = @"https://bnc.lt";
NSString * const BNC_SDK_VERSION = @"0.25.9";
NSString * const BNC_SDK_VERSION = @"0.25.10";
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>0.25.9</string>
<string>0.25.10</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>0.25.9</string>
<string>0.25.10</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSHumanReadableCopyright</key>
Expand Down
4 changes: 2 additions & 2 deletions Branch.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>0.25.9</string>
<string>0.25.10</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>0.25.9</string>
<string>0.25.10</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSHumanReadableCopyright</key>
Expand Down
Binary file modified Branch.framework/Versions/A/Branch
Binary file not shown.
15 changes: 15 additions & 0 deletions Branch.framework/Versions/A/Headers/Branch.h
Original file line number Diff line number Diff line change
Expand Up @@ -225,9 +225,24 @@ typedef NS_ENUM(NSUInteger, BranchCreditHistoryOrder) {
You can only set the Branch key once per app run.
@param branchKey The Branch key to use.
@param error NSError will be set if Branch encounters a key error.
*/
+ (void) setBranchKey:(NSString*)branchKey error:(NSError **)error;

/**
Directly sets the Branch key to be used. Branch usually reads the Branch key from your app's
Info.plist file which is recommended and more convenient. But the Branch key can also be set
with this method. See the documentation at
https://dev.branch.io/getting-started/sdk-integration-guide/guide/ios/#configure-xcode-project
for information about configuring your app with Branch keys.
You can only set the Branch key once per app run. Any errors are logged.
@param branchKey The Branch key to use.
*/
+ (void) setBranchKey:(NSString*)branchKey;


/// @return Returns the current Branch key.
+ (NSString*) branchKey;

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 = "0.25.9"
s.version = "0.25.10"
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: 6 additions & 2 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
Branch iOS SDK Change Log

- v0.25.9

- v0.25.10
* _*Master Release*_ - December 12, 2018
* SDK-76 Fix exception on SDK misconfiguration.
* Fix Validator Error (#892)

- v0.25.9
* _*Master Release*_ - November 29, 2018
* DEVEX-826 Fix Unit Tests
- Fix blacklist unit test.
Expand Down
4 changes: 2 additions & 2 deletions carthage-files/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>0.25.9</string>
<string>0.25.10</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>0.25.9</string>
<string>0.25.10</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>
Expand Down
4 changes: 2 additions & 2 deletions checksum
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#checksum for Branch-iOS-SDK found at https://s3-us-west-1.amazonaws.com/branchhost/Branch-iOS-SDK.zip
56cb9f3675b4318933ada009f386e50ff8dbc26c Branch-iOS-SDK.zip
531d48e64b4bbedd6ccbfb9cb42f47e2aee26035 Branch-iOS-SDK.zip
#checksum for Branch-iOS-TestBed found at https://s3-us-west-1.amazonaws.com/branchhost/Branch-iOS-TestBed.zip
2e5c70694d7241987bd134e35a5481807d34cd28 Branch-iOS-TestBed.zip
7595886125b8511d10bd8cb45fd24620bb7f3563 Branch-iOS-TestBed.zip
2 changes: 1 addition & 1 deletion scripts/version
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Options:
USAGE
}

version=0.25.9
version=0.25.10

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

0 comments on commit b2831b1

Please sign in to comment.