Skip to content

Commit 76e59fc

Browse files
authored
chore(0.76): fix yarn.lock and try publishing again (#2593)
## Summary: Update the yarn lock, add a .rnm-publish sentinel file, and try again ## Test Plan:
1 parent 8359782 commit 76e59fc

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: 76,
19-
patch: 11,
19+
patch: 10,
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: @(76),
26-
RCTVersionPatch: @(11),
26+
RCTVersionPatch: @(10),
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
@@ -175,10 +175,10 @@ - (void)showWithMessage:(NSString *)message onResume:(void (^)(void))onResume
175175
[self.alertWindow makeKeyAndVisible];
176176
[self.alertWindow.rootViewController presentViewController:view animated:NO completion:nil];
177177
#else // [macOS]
178-
self.alertWindow.contentViewController = view;
179178
view.message = message;
180179
view.onResume = onResume;
181-
180+
181+
self.alertWindow.contentViewController = view;
182182
NSWindow *parentWindow = RCTKeyWindow();
183183
if (![[parentWindow sheets] doesContain:self->_alertWindow]) {
184184
[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.76.11
1+
VERSION_NAME=0.76.10
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", 76,
20-
"patch", 11,
20+
"patch", 10,
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 = 76;
20-
int32_t Patch = 11;
20+
int32_t Patch = 10;
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.76.11",
3+
"version": "0.76.10",
44
"description": "React Native for macOS",
55
"license": "MIT",
66
"repository": {
@@ -112,7 +112,7 @@
112112
},
113113
"dependencies": {
114114
"@jest/create-cache-key-function": "^29.6.3",
115-
"@react-native-macos/virtualized-lists": "0.76.11",
115+
"@react-native-macos/virtualized-lists": "0.76.10",
116116
"@react-native/assets-registry": "0.76.9",
117117
"@react-native/codegen": "0.76.9",
118118
"@react-native/community-cli-plugin": "0.76.9",

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.76.11",
3+
"version": "0.76.10",
44
"description": "Virtualized lists for React Native macOS.",
55
"license": "MIT",
66
"repository": {

0 commit comments

Comments
 (0)