Skip to content

Commit

Permalink
[0.73.0] Bump version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
Distiller committed Dec 6, 2023
1 parent 6a4b434 commit 1eb4bf0
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion packages/react-native/Libraries/Core/ReactNativeVersion.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ exports.version = {
major: 0,
minor: 73,
patch: 0,
prerelease: 'rc.8',
prerelease: null,
};
2 changes: 1 addition & 1 deletion packages/react-native/React/Base/RCTVersion.m
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
RCTVersionMajor: @(0),
RCTVersionMinor: @(73),
RCTVersionPatch: @(0),
RCTVersionPrerelease: @"rc.8",
RCTVersionPrerelease: [NSNull null],
};
});
return __rnVersion;
Expand Down
2 changes: 1 addition & 1 deletion packages/react-native/ReactAndroid/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION_NAME=0.73.0-rc.8
VERSION_NAME=0.73.0
react.internal.publishingGroup=com.facebook.react

android.useAndroidX=true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ public class ReactNativeVersion {
"major", 0,
"minor", 73,
"patch", 0,
"prerelease", "rc.8");
"prerelease", null);
}
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ constexpr struct {
int32_t Major = 0;
int32_t Minor = 73;
int32_t Patch = 0;
std::string_view Prerelease = "rc.8";
std::string_view Prerelease = "";
} ReactNativeVersion;

} // namespace facebook::react
2 changes: 1 addition & 1 deletion packages/react-native/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native",
"version": "0.73.0-rc.8",
"version": "0.73.0",
"description": "A framework for building native apps using React",
"license": "MIT",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/react-native/template/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"dependencies": {
"react": "18.2.0",
"react-native": "0.73.0-rc.8"
"react-native": "0.73.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
Expand Down

0 comments on commit 1eb4bf0

Please sign in to comment.