Skip to content

Commit 2e374d1

Browse files
author
Edward Smith
committed
Version 0.25.0. Updated change log and test scripts.
1 parent 2ae7d8f commit 2e374d1

File tree

10 files changed

+21
-49
lines changed

10 files changed

+21
-49
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.24.2";
15+
NSString * const BNC_SDK_VERSION = @"0.25.0";

Branch-TestBed-Xcode-7/Branch-TestBed.xcodeproj/project.pbxproj

Lines changed: 2 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -879,8 +879,6 @@
879879
7E6B3B4D1AA42D0E005F45BF /* Sources */,
880880
7E6B3B4E1AA42D0E005F45BF /* Frameworks */,
881881
7E6B3B4F1AA42D0E005F45BF /* Resources */,
882-
CA6C45DB44005B39B2D6B322 /* [CP] Embed Pods Frameworks */,
883-
1F967886CBF816DF82E841B2 /* [CP] Copy Pods Resources */,
884882
);
885883
buildRules = (
886884
);
@@ -966,21 +964,6 @@
966964
/* End PBXResourcesBuildPhase section */
967965

968966
/* Begin PBXShellScriptBuildPhase section */
969-
1F967886CBF816DF82E841B2 /* [CP] Copy Pods Resources */ = {
970-
isa = PBXShellScriptBuildPhase;
971-
buildActionMask = 2147483647;
972-
files = (
973-
);
974-
inputPaths = (
975-
);
976-
name = "[CP] Copy Pods Resources";
977-
outputPaths = (
978-
);
979-
runOnlyForDeploymentPostprocessing = 0;
980-
shellPath = /bin/sh;
981-
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Branch-SDK-Tests/Pods-Branch-SDK-Tests-resources.sh\"\n";
982-
showEnvVarsInLog = 0;
983-
};
984967
78EC30BDC487D4AA5E7DC0D3 /* [CP] Check Pods Manifest.lock */ = {
985968
isa = PBXShellScriptBuildPhase;
986969
buildActionMask = 2147483647;
@@ -999,21 +982,6 @@
999982
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
1000983
showEnvVarsInLog = 0;
1001984
};
1002-
CA6C45DB44005B39B2D6B322 /* [CP] Embed Pods Frameworks */ = {
1003-
isa = PBXShellScriptBuildPhase;
1004-
buildActionMask = 2147483647;
1005-
files = (
1006-
);
1007-
inputPaths = (
1008-
);
1009-
name = "[CP] Embed Pods Frameworks";
1010-
outputPaths = (
1011-
);
1012-
runOnlyForDeploymentPostprocessing = 0;
1013-
shellPath = /bin/sh;
1014-
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Branch-SDK-Tests/Pods-Branch-SDK-Tests-frameworks.sh\"\n";
1015-
showEnvVarsInLog = 0;
1016-
};
1017985
/* End PBXShellScriptBuildPhase section */
1018986

1019987
/* Begin PBXSourcesBuildPhase section */
@@ -1320,7 +1288,7 @@
13201288
PRODUCT_BUNDLE_IDENTIFIER = "io.branch.sdk.Branch-TestBed";
13211289
PRODUCT_NAME = "$(TARGET_NAME)";
13221290
PROVISIONING_PROFILE = "";
1323-
USER_HEADER_SEARCH_PATHS = $PROJECT_DIR;
1291+
USER_HEADER_SEARCH_PATHS = "$PROJECT_DIR";
13241292
WRAPPER_EXTENSION = app;
13251293
};
13261294
name = Debug;
@@ -1341,7 +1309,7 @@
13411309
PRODUCT_BUNDLE_IDENTIFIER = "io.branch.sdk.Branch-TestBed";
13421310
PRODUCT_NAME = "$(TARGET_NAME)";
13431311
PROVISIONING_PROFILE = "";
1344-
USER_HEADER_SEARCH_PATHS = $PROJECT_DIR;
1312+
USER_HEADER_SEARCH_PATHS = "$PROJECT_DIR";
13451313
WRAPPER_EXTENSION = app;
13461314
};
13471315
name = Release;

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

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.24.2"
3+
s.version = "0.25.0"
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 & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
Branch iOS SDK Change Log
22

3+
- v0.25.0
4+
* _*Master Release*_ - May 3, 2018
5+
* Reorganized project as minimally as possible to make building unit and functional test apps much easier.
6+
* Added an example of Adjust revenue event tracking in TestBed-Swift.
7+
38
- v0.24.2
49
* _*Master Release*_ - April 21, 2018
510
* Fixed a bug where a opening a blacklisted URI scheme would cause an HTTP status 400 for each

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.24.2</string>
18+
<string>0.25.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>0.24.2</string>
22+
<string>0.25.0</string>
2323
<key>NSPrincipalClass</key>
2424
<string></string>
2525
</dict>

scripts/pod-update-all

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ function updatePodsInDirectory() {
3030
}
3131

3232
gem install cocoapods
33-
updatePodsInDirectory Branch-TestBed
3433
updatePodsInDirectory Branch-TestBed-Swift
3534
updatePodsInDirectory Branch-TestBed-Xcode-7
3635
updatePodsInDirectory Examples/WebViewExample bundler

scripts/test-build-all

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,11 @@ buildDirectoryProjectScheme \
8080

8181
buildDirectoryProjectScheme \
8282
Branch-TestBed \
83-
Branch-TestBed.xcworkspace \
83+
Branch-TestBed.xcodeproj \
8484
Branch-TestBed
8585

8686
buildDirectoryProjectScheme \
87-
Branch-TestBed/Branch-TestBed-UITests \
87+
Examples/UITestBed \
8888
UITestBed.xcodeproj \
8989
UITestBed
9090

scripts/test-unit-tests

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ function testSimulatorVersion() {
3333
local version=$2
3434
printf "${textBlue}Testing %s %s...${textNormal}\n" "${name}" "${version}"
3535
xcodebuild \
36-
-workspace Branch-TestBed.xcworkspace \
36+
-project Branch-TestBed.xcodeproj \
3737
-scheme Branch-TestBed \
3838
-destination name="${name}",OS="${version}" \
3939
clean test -quiet
@@ -57,7 +57,7 @@ function testSimulatorStress() {
5757
let stressTest=stressTest+1
5858
printf "${textBlue} Stress test %d.${textNormal}\n" $stressTest
5959
xcodebuild \
60-
-workspace Branch-TestBed.xcworkspace \
60+
-project Branch-TestBed.xcodeproj \
6161
-scheme Branch-TestBed \
6262
-destination name="$stressPhone",OS="$stressOS" \
6363
test -quiet
@@ -66,7 +66,7 @@ function testSimulatorStress() {
6666
function analyzeBuild() {
6767
printf "${textBlue}Running static analysis...${textNormal}\n"
6868
xcodebuild \
69-
-workspace Branch-TestBed.xcworkspace \
69+
-project Branch-TestBed.xcodeproj \
7070
-scheme Branch-TestBed \
7171
-destination name="iPhone 7",OS=latest \
7272
analyze -quiet
@@ -75,12 +75,12 @@ function analyzeBuild() {
7575
function cleanAll() {
7676
printf "${textBlue}Cleaning all projects...${textNormal}\n"
7777
xcodebuild \
78-
-workspace Branch-TestBed.xcworkspace \
78+
-project Branch-TestBed.xcodeproj \
7979
-scheme Branch-TestBed \
8080
-destination name="iPhone 7",OS=latest \
8181
clean -quiet
8282
xcodebuild \
83-
-workspace Branch-TestBed.xcworkspace \
83+
-project Branch-TestBed.xcodeproj \
8484
-scheme Branch-SDK-Tests \
8585
-destination name="iPhone 7",OS=latest \
8686
clean -quiet

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.24.2
34+
version=0.25.0
3535

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

0 commit comments

Comments
 (0)