Revert "[0.65.0-rc.0] Bump version numbers"

This reverts commit e324498941.
This commit is contained in:
Tommy Nguyen
2021-06-09 15:55:43 +02:00
parent e324498941
commit 4e9ae4c98a
7 changed files with 21 additions and 16 deletions
+4 -4
View File
@@ -1,17 +1,17 @@
/**
* @generated by scripts/bump-oss-version.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @format
* @generated by scripts/bump-oss-version.js
* @flow strict
*/
exports.version = {
major: 0,
minor: 65,
minor: 0,
patch: 0,
prerelease: 'rc.0',
prerelease: null,
};
+5 -5
View File
@@ -21,11 +21,11 @@ NSDictionary* RCTGetReactNativeVersion(void)
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^(void){
__rnVersion = @{
RCTVersionMajor: @(0),
RCTVersionMinor: @(65),
RCTVersionPatch: @(0),
RCTVersionPrerelease: @"rc.0",
};
RCTVersionMajor: @(0),
RCTVersionMinor: @(0),
RCTVersionPatch: @(0),
RCTVersionPrerelease: [NSNull null],
};
});
return __rnVersion;
}
+1 -1
View File
@@ -1,4 +1,4 @@
VERSION_NAME=0.65.0-rc.0
VERSION_NAME=1000.0.0-master
GROUP=com.facebook.react
POM_NAME=ReactNative
@@ -16,7 +16,7 @@ import java.util.Map;
public class ReactNativeVersion {
public static final Map<String, Object> VERSION = MapBuilder.<String, Object>of(
"major", 0,
"minor", 65,
"minor", 0,
"patch", 0,
"prerelease", "rc.0");
"prerelease", null);
}
+2 -2
View File
@@ -16,9 +16,9 @@ namespace facebook::react {
constexpr struct {
int32_t Major = 0;
int32_t Minor = 65;
int32_t Minor = 0;
int32_t Patch = 0;
std::string_view Prerelease = "rc.0";
std::string_view Prerelease = "";
} ReactNativeVersion;
} // namespace facebook::react
+6 -1
View File
@@ -1,6 +1,7 @@
{
"name": "react-native",
"version": "0.65.0-rc.0",
"private": true,
"version": "1000.0.0",
"bin": "./cli.js",
"description": "A framework for building native apps using React",
"license": "MIT",
@@ -80,6 +81,10 @@
"test-ios-e2e": "detox test -c ios.sim.release packages/rn-tester/e2e",
"test-ios": "./scripts/objc-test.sh test"
},
"workspaces": [
"packages/!(eslint-config-react-native-community)",
"repo-config"
],
"peerDependencies": {
"react": "17.0.2"
},
+1 -1
View File
@@ -11,7 +11,7 @@
},
"dependencies": {
"react": "17.0.2",
"react-native": "0.65.0-rc.0"
"react-native": "1000.0.0"
},
"devDependencies": {
"@babel/core": "^7.12.9",