Skip to content

Commit

Permalink
[0.73.0-rc.0] Bump version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
Distiller committed Oct 2, 2023
1 parent aa58c4c commit 6b9cf50
Show file tree
Hide file tree
Showing 8 changed files with 457 additions and 575 deletions.
6 changes: 3 additions & 3 deletions packages/react-native/Libraries/Core/ReactNativeVersion.js
Expand Up @@ -10,8 +10,8 @@
*/

exports.version = {
major: 1000,
minor: 0,
major: 0,
minor: 73,
patch: 0,
prerelease: null,
prerelease: 'rc.0',
};
6 changes: 3 additions & 3 deletions packages/react-native/React/Base/RCTVersion.m
Expand Up @@ -21,10 +21,10 @@
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;
Expand Down
2 changes: 1 addition & 1 deletion packages/react-native/ReactAndroid/gradle.properties
@@ -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
Expand Down
Expand Up @@ -15,8 +15,8 @@

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");
}
Expand Up @@ -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
4 changes: 2 additions & 2 deletions packages/react-native/package.json
@@ -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": {
Expand Down Expand Up @@ -148,4 +148,4 @@
}
]
}
}
}
2 changes: 1 addition & 1 deletion packages/react-native/template/package.json
Expand Up @@ -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",
Expand Down

0 comments on commit 6b9cf50

Please sign in to comment.