Skip to content

Commit

Permalink
Bump version to 0.71.2-alpha.2
Browse files Browse the repository at this point in the history
  • Loading branch information
roryabraham committed Feb 17, 2023
1 parent 8f7da4e commit 07785f1
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion 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: 71,
patch: 2,
prerelease: 'alpha.1',
prerelease: 'alpha.2',
};
2 changes: 1 addition & 1 deletion React/Base/RCTVersion.m
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
RCTVersionMajor: @(0),
RCTVersionMinor: @(71),
RCTVersionPatch: @(2),
RCTVersionPrerelease: @"alpha.1",
RCTVersionPrerelease: @"alpha.2",
};
});
return __rnVersion;
Expand Down
2 changes: 1 addition & 1 deletion ReactAndroid/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION_NAME=0.71.2-alpha.1
VERSION_NAME=0.71.2-alpha.2
GROUP=com.facebook.react

# JVM Versions
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ public class ReactNativeVersion {
"major", 0,
"minor", 71,
"patch", 2,
"prerelease", "alpha.1");
"prerelease", "alpha.2");
}
2 changes: 1 addition & 1 deletion ReactCommon/cxxreact/ReactNativeVersion.h
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 = 71;
int32_t Patch = 2;
std::string_view Prerelease = "alpha.1";
std::string_view Prerelease = "alpha.2";
} ReactNativeVersion;

} // namespace facebook::react
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@expensify/react-native",
"version": "0.71.2-alpha.1",
"version": "0.71.2-alpha.2",
"bin": "./cli.js",
"description": "A framework for building native apps using React",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion 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.71.2-alpha.1"
"react-native": "0.71.2-alpha.2"
},
"devDependencies": {
"@babel/core": "^7.20.0",
Expand Down

0 comments on commit 07785f1

Please sign in to comment.