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

This reverts commit 6b9cf50b30.
This commit is contained in:
Alex Hunt
2023-10-03 11:57:38 -04:00
parent b6c0703ebb
commit 0c040314b5
8 changed files with 575 additions and 457 deletions
+3 -3
View File
@@ -10,8 +10,8 @@
*/
exports.version = {
major: 0,
minor: 73,
major: 1000,
minor: 0,
patch: 0,
prerelease: 'rc.0',
prerelease: null,
};
@@ -21,10 +21,10 @@ NSDictionary* RCTGetReactNativeVersion(void)
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^(void){
__rnVersion = @{
RCTVersionMajor: @(0),
RCTVersionMinor: @(73),
RCTVersionMajor: @(1000),
RCTVersionMinor: @(0),
RCTVersionPatch: @(0),
RCTVersionPrerelease: @"rc.0",
RCTVersionPrerelease: [NSNull null],
};
});
return __rnVersion;
@@ -1,4 +1,4 @@
VERSION_NAME=0.73.0-rc.0
VERSION_NAME=1000.0.0
react.internal.publishingGroup=com.facebook.react
android.useAndroidX=true
@@ -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", 73,
"major", 1000,
"minor", 0,
"patch", 0,
"prerelease", "rc.0");
"prerelease", null);
}
@@ -15,10 +15,10 @@
namespace facebook::react {
constexpr struct {
int32_t Major = 0;
int32_t Minor = 73;
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
+2 -2
View File
@@ -1,6 +1,6 @@
{
"name": "react-native",
"version": "0.73.0-rc.0",
"version": "1000.0.0",
"description": "A framework for building native apps using React",
"license": "MIT",
"repository": {
@@ -148,4 +148,4 @@
}
]
}
}
}
+1 -1
View File
@@ -11,7 +11,7 @@
},
"dependencies": {
"react": "18.2.0",
"react-native": "0.73.0-rc.0"
"react-native": "1000.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
File diff suppressed because it is too large Load Diff