Skip to content

Commit

Permalink
Release 0.25.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
Edward Smith committed Jul 17, 2018
1 parent fef43c2 commit 23db5b9
Show file tree
Hide file tree
Showing 11 changed files with 25 additions and 22 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.0";
NSString * const BNC_SDK_VERSION = @"0.25.1";
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.0</string>
<string>0.25.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>0.25.0</string>
<string>0.25.1</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.0</string>
<string>0.25.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>0.25.0</string>
<string>0.25.1</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSHumanReadableCopyright</key>
Expand Down
Binary file modified Branch.framework/Versions/A/Branch
Binary file not shown.
19 changes: 11 additions & 8 deletions Branch.framework/Versions/A/Headers/BNCError.h
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
//
// BNCError.h
// Branch-SDK
//
// Created by Qinwei Gong on 11/17/14.
// Copyright (c) 2014 Branch Metrics. All rights reserved.
//
/**
@file BNCError.h
@package Branch-SDK
@brief Branch errors.
@author Qinwei Gong
@date November 2014
@copyright Copyright © 2014 Branch. All rights reserved.
*/

#if __has_feature(modules)
@import Foundation;
Expand Down Expand Up @@ -40,4 +42,5 @@ typedef NS_ENUM(NSInteger, BNCErrorCode) {
+ (NSError*_Nonnull) branchErrorWithCode:(BNCErrorCode)errorCode localizedMessage:(NSString*_Nullable)message;
@end

void BNCForceNSErrorCategoryToLoad(void) __attribute__((constructor));
void BNCForceNSErrorCategoryToLoad(void)
__attribute__((constructor));
4 changes: 2 additions & 2 deletions Branch.framework/Versions/A/Headers/BNCLog.h
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,9 @@ extern void BNCLogWriteMessageFormat(
BNCLogLevel logLevel,
const char *_Nullable sourceFileName,
int32_t sourceLineNumber,
id _Nullable messageFormat,
NSString* _Nullable messageFormat,
...
);
) NS_FORMAT_FUNCTION(4,5);

/// Swift-friendly wrapper for BNCLogWriteMessageFormat
extern void BNCLogWriteMessage(
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.0"
s.version = "0.25.1"
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
2 changes: 1 addition & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Branch iOS SDK Change Log

- v0.25.1
* _*Master Release*_ - July 12, 2018
* Fixed some documentation inconsistencies, some compile warnings, and unit tests.
* Fixed some documentation inconsistencies, fixed some compile warnings, and updated the unit tests.
* Send instrumentation times for Apple Search Ads (DEVEX-594).
* Prevent strong match controller crash on iOS 10 (DEVEX-515).
* Added a Branch SDK integration validator.
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.0</string>
<string>0.25.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>0.25.0</string>
<string>0.25.1</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
ecbe416d2afa7f64030e737560a178fa6d330d01 Branch-iOS-SDK.zip
7b5188cb5dd0f89a41b1a0cdd5d0cdd0dc37622a Branch-iOS-SDK.zip
#checksum for Branch-iOS-TestBed found at https://s3-us-west-1.amazonaws.com/branchhost/Branch-iOS-TestBed.zip
201739809142cb097ebd5ab12839f86573170d53 Branch-iOS-TestBed.zip
08e9d91149ac1dada3c1556b0541e1f7e807e834 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.0
version=0.25.1

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

0 comments on commit 23db5b9

Please sign in to comment.