Skip to content

Commit 9ee4a14

Browse files
committed
Applying package update to 0.64.8 ***NO_CI***
1 parent 31275df commit 9ee4a14

File tree

8 files changed

+259
-259
lines changed

8 files changed

+259
-259
lines changed

Libraries/Core/ReactNativeVersion.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212
exports.version = {
1313
major: 0,
1414
minor: 64,
15-
patch: 7,
15+
patch: 8,
1616
prerelease: null,
1717
};

React/Base/RCTVersion.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
__rnVersion = @{
2424
RCTVersionMajor: @(0),
2525
RCTVersionMinor: @(64),
26-
RCTVersionPatch: @(7),
26+
RCTVersionPatch: @(8),
2727
RCTVersionPrerelease: [NSNull null],
2828
};
2929
});

ReactAndroid/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# TODO :: ANDROID patch to stay consistant with the npm version.
2-
VERSION_NAME=0.64.7
2+
VERSION_NAME=0.64.8
33
GROUP=com.facebook.react
44

55
POM_NAME=ReactNative

ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo/ReactNativeVersion.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ public class ReactNativeVersion {
1717
public static final Map<String, Object> VERSION = MapBuilder.<String, Object>of(
1818
"major", 0,
1919
"minor", 64,
20-
"patch", 7,
20+
"patch", 8,
2121
"prerelease", null);
2222
}

ReactCommon/cxxreact/ReactNativeVersion.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ namespace facebook::react {
1717
constexpr struct {
1818
int32_t Major = 0;
1919
int32_t Minor = 64;
20-
int32_t Patch = 7;
20+
int32_t Patch = 8;
2121
std::string_view Prerelease = "";
2222
} ReactNativeVersion;
2323

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "react-native-macos",
33
"private": true,
4-
"version": "0.64.7",
4+
"version": "0.64.8",
55
"bin": "./cli.js",
66
"description": "[Microsoft Fork] A framework for building native apps using React",
77
"license": "MIT",

0 commit comments

Comments
 (0)