Skip to content

Commit 48413a4

Browse files
committed
[0.63.0-rc.1] Bump version numbers
1 parent 208bd05 commit 48413a4

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
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: 63,
1515
patch: 0,
16-
prerelease: 'rc.0',
16+
prerelease: 'rc.1',
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: @(63),
2626
RCTVersionPatch: @(0),
27-
RCTVersionPrerelease: @"rc.0",
27+
RCTVersionPrerelease: @"rc.1",
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.63.0-rc.0
1+
VERSION_NAME=0.63.0-rc.1
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", 63,
2020
"patch", 0,
21-
"prerelease", "rc.0");
21+
"prerelease", "rc.1");
2222
}

ReactCommon/cxxreact/ReactNativeVersion.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ constexpr struct {
1818
int32_t Major = 0;
1919
int32_t Minor = 63;
2020
int32_t Patch = 0;
21-
std::string_view Prerelease = "rc.0";
21+
std::string_view Prerelease = "rc.1";
2222
} ReactNativeVersion;
2323

2424
} // namespace facebook::react

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.63.0-rc.0",
3+
"version": "0.63.0-rc.1",
44
"bin": "./cli.js",
55
"description": "A framework for building native apps using React",
66
"license": "MIT",

template/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
},
1212
"dependencies": {
1313
"react": "16.13.1",
14-
"react-native": "0.63.0-rc.0"
14+
"react-native": "0.63.0-rc.1"
1515
},
1616
"devDependencies": {
1717
"@babel/core": "^7.8.4",

0 commit comments

Comments
 (0)