From fc6580e2e055d64ab5bcf19c0598505b927f7523 Mon Sep 17 00:00:00 2001 From: grabbou Date: Tue, 10 Sep 2019 19:01:50 +0200 Subject: [PATCH] [0.61.0-rc.3] Bump version numbers --- Libraries/Core/ReactNativeVersion.js | 2 +- React/Base/RCTVersion.m | 2 +- ReactAndroid/gradle.properties | 2 +- .../systeminfo/ReactNativeVersion.java | 2 +- package.json | 2 +- scripts/test-manual-e2e.sh | 44 +++++++++---------- template/package.json | 2 +- 7 files changed, 28 insertions(+), 28 deletions(-) diff --git a/Libraries/Core/ReactNativeVersion.js b/Libraries/Core/ReactNativeVersion.js index 8ff11103f4a..6d83d6746af 100644 --- a/Libraries/Core/ReactNativeVersion.js +++ b/Libraries/Core/ReactNativeVersion.js @@ -13,5 +13,5 @@ exports.version = { major: 0, minor: 61, patch: 0, - prerelease: 'rc.2', + prerelease: 'rc.3', }; diff --git a/React/Base/RCTVersion.m b/React/Base/RCTVersion.m index 8b7d14927df..41fab79338b 100644 --- a/React/Base/RCTVersion.m +++ b/React/Base/RCTVersion.m @@ -24,7 +24,7 @@ NSDictionary* RCTGetReactNativeVersion(void) RCTVersionMajor: @(0), RCTVersionMinor: @(61), RCTVersionPatch: @(0), - RCTVersionPrerelease: @"rc.2", + RCTVersionPrerelease: @"rc.3", }; }); return __rnVersion; diff --git a/ReactAndroid/gradle.properties b/ReactAndroid/gradle.properties index fe45a5de801..e7befd8044d 100644 --- a/ReactAndroid/gradle.properties +++ b/ReactAndroid/gradle.properties @@ -1,4 +1,4 @@ -VERSION_NAME=0.61.0-rc.2 +VERSION_NAME=0.61.0-rc.3 GROUP=com.facebook.react POM_NAME=ReactNative diff --git a/ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo/ReactNativeVersion.java b/ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo/ReactNativeVersion.java index 173419f8ade..75c99bfd9a1 100644 --- a/ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo/ReactNativeVersion.java +++ b/ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo/ReactNativeVersion.java @@ -18,5 +18,5 @@ public class ReactNativeVersion { "major", 0, "minor", 61, "patch", 0, - "prerelease", "rc.2"); + "prerelease", "rc.3"); } diff --git a/package.json b/package.json index dce990168fa..f11c382e125 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-native", - "version": "0.61.0-rc.2", + "version": "0.61.0-rc.3", "bin": "./cli.js", "description": "A framework for building native apps using React", "license": "MIT", diff --git a/scripts/test-manual-e2e.sh b/scripts/test-manual-e2e.sh index bd6cc66548a..14a28e72e23 100755 --- a/scripts/test-manual-e2e.sh +++ b/scripts/test-manual-e2e.sh @@ -42,34 +42,34 @@ success "Generated artifacts for Maven" npm install -success "Killing any running packagers" -lsof -i :8081 | grep LISTEN -lsof -i :8081 | grep LISTEN | /usr/bin/awk '{print $2}' | xargs kill +# success "Killing any running packagers" +# lsof -i :8081 | grep LISTEN +# lsof -i :8081 | grep LISTEN | /usr/bin/awk '{print $2}' | xargs kill -info "Start the packager in another terminal by running 'npm start' from the root" -info "and then press any key." -info "" -read -n 1 +# info "Start the packager in another terminal by running 'npm start' from the root" +# info "and then press any key." +# info "" +# read -n 1 -./gradlew :RNTester:android:app:installJscDebug || error "Couldn't build RNTester Android" +# ./gradlew :RNTester:android:app:installJscDebug || error "Couldn't build RNTester Android" -info "Press any key to run RNTester in an already running Android emulator/device" -info "" -read -n 1 -adb shell am start -n com.facebook.react.uiapp/.RNTesterActivity +# info "Press any key to run RNTester in an already running Android emulator/device" +# info "" +# read -n 1 +# adb shell am start -n com.facebook.react.uiapp/.RNTesterActivity -info "Press any key to open the workspace in Xcode, then build and test manually." -info "" -read -n 1 -open "RNTester/RNTesterPods.xcworkspace" +# info "Press any key to open the workspace in Xcode, then build and test manually." +# info "" +# read -n 1 +# open "RNTester/RNTesterPods.xcworkspace" -info "When done testing RNTester app on iOS and Android press any key to continue." -info "" -read -n 1 +# info "When done testing RNTester app on iOS and Android press any key to continue." +# info "" +# read -n 1 -success "Killing packager" -lsof -i :8081 | grep LISTEN -lsof -i :8081 | grep LISTEN | /usr/bin/awk '{print $2}' | xargs kill +# success "Killing packager" +# lsof -i :8081 | grep LISTEN +# lsof -i :8081 | grep LISTEN | /usr/bin/awk '{print $2}' | xargs kill npm pack diff --git a/template/package.json b/template/package.json index fee802aad4a..6ad0bab2ad3 100644 --- a/template/package.json +++ b/template/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "react": "16.8.1", - "react-native": "0.61.0-rc.2" + "react-native": "0.61.0-rc.3" }, "devDependencies": { "@babel/core": "^7.5.0",