Skip to content

Commit 9f8ef61

Browse files
authored
chore(0.77): fix yarn.lock and try publishing again (#2592)
## Summary: Update the yarn lock, add a .rnm-publish sentinel file, and try again ## Test Plan:
1 parent af65950 commit 9f8ef61

File tree

9 files changed

+15
-10
lines changed

9 files changed

+15
-10
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
__default__: patch
3+
---
4+
5+
Implement paused in Debugger overlay

packages/react-native/Libraries/Core/ReactNativeVersion.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const version: $ReadOnly<{
1616
}> = {
1717
major: 0,
1818
minor: 77,
19-
patch: 6,
19+
patch: 5,
2020
prerelease: null,
2121
};
2222

packages/react-native/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: @(77),
26-
RCTVersionPatch: @(6),
26+
RCTVersionPatch: @(5),
2727
RCTVersionPrerelease: [NSNull null],
2828
};
2929
});

packages/react-native/React/DevSupport/RCTPausedInDebuggerOverlayController.mm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,10 +179,10 @@ - (void)showWithMessage:(NSString *)message onResume:(void (^)(void))onResume
179179
[self.alertWindow makeKeyAndVisible];
180180
[self.alertWindow.rootViewController presentViewController:view animated:NO completion:nil];
181181
#else // [macOS]
182-
self.alertWindow.contentViewController = view;
183182
view.message = message;
184183
view.onResume = onResume;
185-
184+
185+
self.alertWindow.contentViewController = view;
186186
NSWindow *parentWindow = RCTKeyWindow();
187187
if (![[parentWindow sheets] doesContain:self->_alertWindow]) {
188188
[parentWindow beginSheet:self.alertWindow completionHandler:^(NSModalResponse returnCode) {

packages/react-native/ReactAndroid/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION_NAME=0.77.6
1+
VERSION_NAME=0.77.5
22
react.internal.publishingGroup=com.facebook.react
33

44
android.useAndroidX=true

packages/react-native/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", 77,
20-
"patch", 6,
20+
"patch", 5,
2121
"prerelease", null);
2222
}

packages/react-native/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 = 77;
20-
int32_t Patch = 6;
20+
int32_t Patch = 5;
2121
std::string_view Prerelease = "";
2222
} ReactNativeVersion;
2323

packages/react-native/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-macos",
3-
"version": "0.77.6",
3+
"version": "0.77.5",
44
"description": "React Native for macOS",
55
"license": "MIT",
66
"repository": {
@@ -111,7 +111,7 @@
111111
},
112112
"dependencies": {
113113
"@jest/create-cache-key-function": "^29.6.3",
114-
"@react-native-macos/virtualized-lists": "0.77.6",
114+
"@react-native-macos/virtualized-lists": "0.77.5",
115115
"@react-native/assets-registry": "0.77.2",
116116
"@react-native/codegen": "0.77.2",
117117
"@react-native/community-cli-plugin": "0.77.2",

packages/virtualized-lists/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-native-macos/virtualized-lists",
3-
"version": "0.77.6",
3+
"version": "0.77.5",
44
"description": "Virtualized lists for React Native macOS.",
55
"license": "MIT",
66
"repository": {

0 commit comments

Comments
 (0)