Skip to content

Commit af9096b

Browse files
committed
chore(release): publish 0.81.5
1 parent e979766 commit af9096b

10 files changed

Lines changed: 15 additions & 20 deletions

File tree

.nx/version-plans/version-plan-1774652075039.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ export const version: $ReadOnly<{
1717
}> = {
1818
major: 0,
1919
minor: 81,
20-
patch: 4,
20+
patch: 5,
2121
prerelease: null,
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: @(81),
26-
RCTVersionPatch: @(4),
26+
RCTVersionPatch: @(5),
2727
RCTVersionPrerelease: [NSNull null],
2828
};
2929
});

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.81.4
1+
VERSION_NAME=0.81.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.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public object ReactNativeVersion {
1414
public val VERSION: Map<String, Any?> = mapOf(
1515
"major" to 0,
1616
"minor" to 81,
17-
"patch" to 4,
17+
"patch" to 5,
1818
"prerelease" to null
1919
)
2020
}

packages/react-native/ReactCommon/cxxreact/ReactNativeVersion.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@
1414

1515
#define REACT_NATIVE_VERSION_MAJOR 0
1616
#define REACT_NATIVE_VERSION_MINOR 81
17-
#define REACT_NATIVE_VERSION_PATCH 4
17+
#define REACT_NATIVE_VERSION_PATCH 5
1818

1919
namespace facebook::react {
2020

2121
constexpr struct {
2222
int32_t Major = 0;
2323
int32_t Minor = 81;
24-
int32_t Patch = 4;
24+
int32_t Patch = 5;
2525
std::string_view Prerelease = "";
2626
} ReactNativeVersion;
2727

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.81.4",
3+
"version": "0.81.5",
44
"description": "React Native for macOS",
55
"license": "MIT",
66
"repository": {
@@ -166,7 +166,7 @@
166166
},
167167
"dependencies": {
168168
"@jest/create-cache-key-function": "^29.7.0",
169-
"@react-native-macos/virtualized-lists": "0.81.4",
169+
"@react-native-macos/virtualized-lists": "0.81.5",
170170
"@react-native/assets-registry": "0.81.6",
171171
"@react-native/codegen": "0.81.6",
172172
"@react-native/community-cli-plugin": "0.81.6",

packages/react-native/scripts/codegen/__tests__/__snapshots__/generate-artifacts-executor-test.js.snap

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ exports[`execute test-app "ReactAppDependencyProvider.podspec" should match snap
361361
# This source code is licensed under the MIT license found in the
362362
# LICENSE file in the root directory of this source tree.
363363
364-
version = \\"0.81.4\\"
364+
version = \\"0.81.5\\"
365365
source = { :git => 'https://github.com/facebook/react-native.git' }
366366
if version == '1000.0.0'
367367
# This is an unpublished version, use the latest commit hash of the react-native repo, which we’re presumably in.
@@ -399,7 +399,7 @@ exports[`execute test-app "ReactCodegen.podspec" should match snapshot 1`] = `
399399
# This source code is licensed under the MIT license found in the
400400
# LICENSE file in the root directory of this source tree.
401401
402-
version = \\"0.81.4\\"
402+
version = \\"0.81.5\\"
403403
source = { :git => 'https://github.com/facebook/react-native.git' }
404404
if version == '1000.0.0'
405405
# This is an unpublished version, use the latest commit hash of the react-native repo, which we’re presumably in.
@@ -840,7 +840,7 @@ exports[`execute test-app-legacy "ReactAppDependencyProvider.podspec" should mat
840840
# This source code is licensed under the MIT license found in the
841841
# LICENSE file in the root directory of this source tree.
842842
843-
version = \\"0.81.4\\"
843+
version = \\"0.81.5\\"
844844
source = { :git => 'https://github.com/facebook/react-native.git' }
845845
if version == '1000.0.0'
846846
# This is an unpublished version, use the latest commit hash of the react-native repo, which we’re presumably in.
@@ -878,7 +878,7 @@ exports[`execute test-app-legacy "ReactCodegen.podspec" should match snapshot 1`
878878
# This source code is licensed under the MIT license found in the
879879
# LICENSE file in the root directory of this source tree.
880880
881-
version = \\"0.81.4\\"
881+
version = \\"0.81.5\\"
882882
source = { :git => 'https://github.com/facebook/react-native.git' }
883883
if version == '1000.0.0'
884884
# This is an unpublished version, use the latest commit hash of the react-native repo, which we’re presumably in.

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

yarn.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3396,7 +3396,7 @@ __metadata:
33963396
languageName: unknown
33973397
linkType: soft
33983398

3399-
"@react-native-macos/virtualized-lists@npm:0.81.4, @react-native-macos/virtualized-lists@workspace:packages/virtualized-lists":
3399+
"@react-native-macos/virtualized-lists@npm:0.81.5, @react-native-macos/virtualized-lists@workspace:packages/virtualized-lists":
34003400
version: 0.0.0-use.local
34013401
resolution: "@react-native-macos/virtualized-lists@workspace:packages/virtualized-lists"
34023402
dependencies:
@@ -12546,7 +12546,7 @@ __metadata:
1254612546
resolution: "react-native-macos@workspace:packages/react-native"
1254712547
dependencies:
1254812548
"@jest/create-cache-key-function": "npm:^29.7.0"
12549-
"@react-native-macos/virtualized-lists": "npm:0.81.4"
12549+
"@react-native-macos/virtualized-lists": "npm:0.81.5"
1255012550
"@react-native/assets-registry": "npm:0.81.6"
1255112551
"@react-native/codegen": "npm:0.81.6"
1255212552
"@react-native/community-cli-plugin": "npm:0.81.6"

0 commit comments

Comments
 (0)