[0.73.0-rc.0] Bump version numbers

This commit is contained in:
Distiller
2023-10-03 16:13:06 +00:00
parent 8263b9d237
commit f133dd2efb
8 changed files with 457 additions and 575 deletions
+3 -3
View File
@@ -10,8 +10,8 @@
*/
exports.version = {
major: 1000,
minor: 0,
major: 0,
minor: 73,
patch: 0,
prerelease: null,
prerelease: 'rc.0',
};
@@ -21,10 +21,10 @@ NSDictionary* RCTGetReactNativeVersion(void)
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^(void){
__rnVersion = @{
RCTVersionMajor: @(1000),
RCTVersionMinor: @(0),
RCTVersionMajor: @(0),
RCTVersionMinor: @(73),
RCTVersionPatch: @(0),
RCTVersionPrerelease: [NSNull null],
RCTVersionPrerelease: @"rc.0",
};
});
return __rnVersion;
@@ -1,4 +1,4 @@
VERSION_NAME=1000.0.0
VERSION_NAME=0.73.0-rc.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", 1000,
"minor", 0,
"major", 0,
"minor", 73,
"patch", 0,
"prerelease", null);
"prerelease", "rc.0");
}
@@ -15,10 +15,10 @@
namespace facebook::react {
constexpr struct {
int32_t Major = 1000;
int32_t Minor = 0;
int32_t Major = 0;
int32_t Minor = 73;
int32_t Patch = 0;
std::string_view Prerelease = "";
std::string_view Prerelease = "rc.0";
} ReactNativeVersion;
} // namespace facebook::react
+2 -2
View File
@@ -1,6 +1,6 @@
{
"name": "react-native",
"version": "1000.0.0",
"version": "0.73.0-rc.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": "1000.0.0"
"react-native": "0.73.0-rc.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
File diff suppressed because it is too large Load Diff