Skip to content

Commit d3a3e46

Browse files
committed
update version
1 parent f7a9eb5 commit d3a3e46

File tree

5 files changed

+13
-6
lines changed

5 files changed

+13
-6
lines changed

.travis.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ before_install:
1212
- pod install --project-directory=Example
1313

1414
before_script:
15-
- >
15+
>-
1616
if [ -z "$TRAVIS_TAG" ]
1717
then
1818
echo "No tag, so not triggering Location"
@@ -25,9 +25,12 @@ before_deploy:
2525
- ./Tools/build.sh
2626

2727
after_deploy:
28-
- >
29-
./Tools/triggerRondo.sh;
30-
version=`cat sdk-version.txt`; if [[ $version != *"beta"* ]]; then ./Tools/triggerRN.sh; fi;
28+
>-
29+
if ! [ "$AFTER_DEPLOY_RUN" ]; then
30+
export AFTER_DEPLOY_RUN=1;
31+
./Tools/triggerRondo.sh;
32+
version=`cat sdk-version.txt`; if [[ $version != *"beta"* ]]; then ./Tools/triggerRN.sh; fi;
33+
fi
3134

3235
deploy:
3336
- provider: script

Leanplum-SDK/Classes/Internal/LPConstants.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
#define IS_NOOP (IS_JAILBROKEN || [LPConstantsState sharedState].isTestMode || [LPConstantsState sharedState].isInPermanentFailureState)
3939
#define RETURN_IF_NOOP if (IS_NOOP) return
4040

41-
#define LEANPLUM_SDK_VERSION @"3.2.0-beta2"
41+
#define LEANPLUM_SDK_VERSION @"3.2.0-beta3"
4242
#define LEANPLUM_CLIENT @"ios"
4343
#define LEANPLUM_SUPPORTED_ENCODING @"gzip"
4444

Tools/triggerRN.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ body="{
1212
}
1313
}}"
1414

15+
echo "triggering Rondo-ReactNative build"
16+
1517
curl -s -X POST \
1618
-H "Content-Type: application/json" \
1719
-H "Accept: application/json" \

Tools/triggerRondo.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ body="{
1111
}
1212
}}"
1313

14+
echo "triggering Rondo-iOS build"
15+
1416
curl -s -X POST \
1517
-H "Content-Type: application/json" \
1618
-H "Accept: application/json" \

sdk-version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.2.0-beta2
1+
3.2.0-beta3

0 commit comments

Comments
 (0)