Skip to content

Commit

Permalink
[0.74.0-rc.3] Bump version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
Distiller committed Mar 11, 2024
1 parent 8a7c718 commit 57cc8e7
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 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 @@ -17,7 +17,7 @@ const version: $ReadOnly<{
major: 0,
minor: 74,
patch: 0,
prerelease: 'rc.2',
prerelease: 'rc.3',
};

module.exports = {version};
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: @(74),
RCTVersionPatch: @(0),
RCTVersionPrerelease: @"rc.2",
RCTVersionPrerelease: @"rc.3",
};
});
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.74.0-rc.2
VERSION_NAME=0.74.0-rc.3
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", 74,
"patch", 0,
"prerelease", "rc.2");
"prerelease", "rc.3");
}
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 = 74;
int32_t Patch = 0;
std::string_view Prerelease = "rc.2";
std::string_view Prerelease = "rc.3";
} ReactNativeVersion;

} // namespace facebook::react
4 changes: 2 additions & 2 deletions packages/react-native/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native",
"version": "0.74.0-rc.2",
"version": "0.74.0-rc.3",
"description": "A framework for building native apps using React",
"license": "MIT",
"repository": {
Expand Down Expand Up @@ -153,4 +153,4 @@
}
]
}
}
}
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.74.0-rc.2"
"react-native": "0.74.0-rc.3"
},
"devDependencies": {
"@babel/core": "^7.20.0",
Expand Down

0 comments on commit 57cc8e7

Please sign in to comment.