Skip to content

Commit fc6580e

Browse files
committed
[0.61.0-rc.3] Bump version numbers
1 parent a648a71 commit fc6580e

File tree

7 files changed

+34
-34
lines changed

7 files changed

+34
-34
lines changed

Libraries/Core/ReactNativeVersion.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ exports.version = {
1313
major: 0,
1414
minor: 61,
1515
patch: 0,
16-
prerelease: 'rc.2',
16+
prerelease: 'rc.3',
1717
};

React/Base/RCTVersion.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
RCTVersionMajor: @(0),
2525
RCTVersionMinor: @(61),
2626
RCTVersionPatch: @(0),
27-
RCTVersionPrerelease: @"rc.2",
27+
RCTVersionPrerelease: @"rc.3",
2828
};
2929
});
3030
return __rnVersion;

ReactAndroid/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION_NAME=0.61.0-rc.2
1+
VERSION_NAME=0.61.0-rc.3
22
GROUP=com.facebook.react
33

44
POM_NAME=ReactNative

ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo/ReactNativeVersion.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ public class ReactNativeVersion {
1818
"major", 0,
1919
"minor", 61,
2020
"patch", 0,
21-
"prerelease", "rc.2");
21+
"prerelease", "rc.3");
2222
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native",
3-
"version": "0.61.0-rc.2",
3+
"version": "0.61.0-rc.3",
44
"bin": "./cli.js",
55
"description": "A framework for building native apps using React",
66
"license": "MIT",

scripts/test-manual-e2e.sh

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -42,34 +42,34 @@ success "Generated artifacts for Maven"
4242

4343
npm install
4444

45-
success "Killing any running packagers"
46-
lsof -i :8081 | grep LISTEN
47-
lsof -i :8081 | grep LISTEN | /usr/bin/awk '{print $2}' | xargs kill
48-
49-
info "Start the packager in another terminal by running 'npm start' from the root"
50-
info "and then press any key."
51-
info ""
52-
read -n 1
53-
54-
./gradlew :RNTester:android:app:installJscDebug || error "Couldn't build RNTester Android"
55-
56-
info "Press any key to run RNTester in an already running Android emulator/device"
57-
info ""
58-
read -n 1
59-
adb shell am start -n com.facebook.react.uiapp/.RNTesterActivity
60-
61-
info "Press any key to open the workspace in Xcode, then build and test manually."
62-
info ""
63-
read -n 1
64-
open "RNTester/RNTesterPods.xcworkspace"
65-
66-
info "When done testing RNTester app on iOS and Android press any key to continue."
67-
info ""
68-
read -n 1
69-
70-
success "Killing packager"
71-
lsof -i :8081 | grep LISTEN
72-
lsof -i :8081 | grep LISTEN | /usr/bin/awk '{print $2}' | xargs kill
45+
# success "Killing any running packagers"
46+
# lsof -i :8081 | grep LISTEN
47+
# lsof -i :8081 | grep LISTEN | /usr/bin/awk '{print $2}' | xargs kill
48+
49+
# info "Start the packager in another terminal by running 'npm start' from the root"
50+
# info "and then press any key."
51+
# info ""
52+
# read -n 1
53+
54+
# ./gradlew :RNTester:android:app:installJscDebug || error "Couldn't build RNTester Android"
55+
56+
# info "Press any key to run RNTester in an already running Android emulator/device"
57+
# info ""
58+
# read -n 1
59+
# adb shell am start -n com.facebook.react.uiapp/.RNTesterActivity
60+
61+
# info "Press any key to open the workspace in Xcode, then build and test manually."
62+
# info ""
63+
# read -n 1
64+
# open "RNTester/RNTesterPods.xcworkspace"
65+
66+
# info "When done testing RNTester app on iOS and Android press any key to continue."
67+
# info ""
68+
# read -n 1
69+
70+
# success "Killing packager"
71+
# lsof -i :8081 | grep LISTEN
72+
# lsof -i :8081 | grep LISTEN | /usr/bin/awk '{print $2}' | xargs kill
7373

7474
npm pack
7575

template/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
},
1111
"dependencies": {
1212
"react": "16.8.1",
13-
"react-native": "0.61.0-rc.2"
13+
"react-native": "0.61.0-rc.3"
1414
},
1515
"devDependencies": {
1616
"@babel/core": "^7.5.0",

0 commit comments

Comments
 (0)