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

This reverts commit f0054e1e30.
This commit is contained in:
Riccardo Cipolleschi
2022-11-04 10:53:57 +00:00
parent 741d102476
commit 39798cfa91
8 changed files with 26 additions and 62 deletions
+3 -3
View File
@@ -85,16 +85,16 @@ GEM
colored2 (~> 3.1)
nanaimo (~> 0.3.0)
rexml (~> 3.2.4)
zeitwerk (2.6.4)
zeitwerk (2.6.0)
PLATFORMS
ruby
DEPENDENCIES
cocoapods (~> 1.11, >= 1.11.3)
cocoapods (~> 1.11, >= 1.11.2)
RUBY VERSION
ruby 2.7.6p219
ruby 2.7.5p203
BUNDLED WITH
2.3.22
+3 -3
View File
@@ -10,8 +10,8 @@
*/
exports.version = {
major: 0,
minor: 71,
major: 1000,
minor: 0,
patch: 0,
prerelease: 'rc.0',
prerelease: null,
};
+3 -3
View File
@@ -21,10 +21,10 @@ NSDictionary* RCTGetReactNativeVersion(void)
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^(void){
__rnVersion = @{
RCTVersionMajor: @(0),
RCTVersionMinor: @(71),
RCTVersionMajor: @(1000),
RCTVersionMinor: @(0),
RCTVersionPatch: @(0),
RCTVersionPrerelease: @"rc.0",
RCTVersionPrerelease: [NSNull null],
};
});
return __rnVersion;
+1 -1
View File
@@ -1,4 +1,4 @@
VERSION_NAME=0.71.0-rc.0
VERSION_NAME=1000.0.0
GROUP=com.facebook.react
# JVM Versions
@@ -15,8 +15,8 @@ import java.util.Map;
public class ReactNativeVersion {
public static final Map<String, Object> VERSION = MapBuilder.<String, Object>of(
"major", 0,
"minor", 71,
"major", 1000,
"minor", 0,
"patch", 0,
"prerelease", "rc.0");
"prerelease", null);
}
+3 -3
View File
@@ -15,10 +15,10 @@
namespace facebook::react {
constexpr struct {
int32_t Major = 0;
int32_t Minor = 71;
int32_t Major = 1000;
int32_t Minor = 0;
int32_t Patch = 0;
std::string_view Prerelease = "rc.0";
std::string_view Prerelease = "";
} ReactNativeVersion;
} // namespace facebook::react
+9 -45
View File
@@ -1,6 +1,7 @@
{
"name": "react-native",
"version": "0.71.0-rc.0",
"private": true,
"version": "1000.0.0",
"bin": "./cli.js",
"description": "A framework for building native apps using React",
"license": "MIT",
@@ -99,6 +100,10 @@
"test-ios": "./scripts/objc-test.sh test",
"test-typescript": "dtslint types"
},
"workspaces": [
"packages/*",
"repo-config"
],
"peerDependencies": {
"react": "18.2.0"
},
@@ -135,54 +140,13 @@
"stacktrace-parser": "^0.1.3",
"use-sync-external-store": "^1.0.0",
"whatwg-fetch": "^3.0.0",
"ws": "^6.2.2",
"react-native-codegen": "^0.71.1"
"ws": "^6.2.2"
},
"devDependencies": {
"flow-bin": "^0.191.0",
"hermes-eslint": "0.8.0",
"react": "18.2.0",
"react-test-renderer": "18.2.0",
"@babel/core": "^7.14.0",
"@babel/eslint-parser": "^7.18.2",
"@babel/generator": "^7.14.0",
"@babel/plugin-transform-regenerator": "^7.0.0",
"@definitelytyped/dtslint": "^0.0.127",
"@react-native-community/eslint-plugin": "*",
"@react-native/eslint-plugin-specs": "^0.71.0",
"@reactions/component": "^2.0.2",
"@types/react": "^18.0.18",
"@typescript-eslint/parser": "^5.30.5",
"async": "^3.2.2",
"clang-format": "^1.8.0",
"connect": "^3.6.5",
"coveralls": "^3.1.1",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-ft-flow": "^2.0.1",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-lint": "^1.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native": "^4.0.0",
"eslint-plugin-relay": "^1.8.3",
"inquirer": "^7.1.0",
"jest": "^29.2.1",
"jest-junit": "^10.0.0",
"jscodeshift": "^0.13.1",
"metro-babel-register": "0.73.3",
"metro-memory-fs": "0.73.3",
"mkdirp": "^0.5.1",
"prettier": "^2.4.1",
"shelljs": "^0.8.5",
"signedsource": "^1.0.0",
"typescript": "4.1.3",
"ws": "^6.2.2",
"yargs": "^17.5.1"
"react-test-renderer": "^18.2.0"
},
"codegenConfig": {
"libraries": [
@@ -202,4 +166,4 @@
}
]
}
}
}
+1 -1
View File
@@ -11,7 +11,7 @@
},
"dependencies": {
"react": "18.2.0",
"react-native": "0.71.0-rc.0"
"react-native": "1000.0.0"
},
"devDependencies": {
"@babel/core": "^7.12.9",