Skip to content

Commit 5f3f3d4

Browse files
committed
[0.51.0] Bump version numbers
1 parent ec2f97a commit 5f3f3d4

8 files changed

Lines changed: 37 additions & 12 deletions

File tree

Libraries/Core/ReactNativeVersion.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ exports.version = {
1616
major: 0,
1717
minor: 51,
1818
patch: 0,
19-
prerelease: 'rc.3',
19+
prerelease: null,
2020
};

RNTester/RNTester.xcodeproj/project.pbxproj

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -427,6 +427,20 @@
427427
remoteGlobalIDString = 134814201AA4EA6300B7C361;
428428
remoteInfo = RCTSettings;
429429
};
430+
AD9FBECB1FD7597F00CADA08 /* PBXContainerItemProxy */ = {
431+
isa = PBXContainerItemProxy;
432+
containerPortal = 14AADEFF1AC3DB95002390C9 /* React.xcodeproj */;
433+
proxyType = 2;
434+
remoteGlobalIDString = 9936F3131F5F2E4B0010BF04;
435+
remoteInfo = privatedata;
436+
};
437+
AD9FBECD1FD7597F00CADA08 /* PBXContainerItemProxy */ = {
438+
isa = PBXContainerItemProxy;
439+
containerPortal = 14AADEFF1AC3DB95002390C9 /* React.xcodeproj */;
440+
proxyType = 2;
441+
remoteGlobalIDString = 9936F32F1F5F2E5B0010BF04;
442+
remoteInfo = "privatedata-tvOS";
443+
};
430444
D85B829B1AB6D5CE003F4FE2 /* PBXContainerItemProxy */ = {
431445
isa = PBXContainerItemProxy;
432446
containerPortal = D85B82911AB6D5CE003F4FE2 /* RCTVibration.xcodeproj */;
@@ -806,6 +820,8 @@
806820
2D66FF8C1ECA405900F0A767 /* libthird-party.a */,
807821
3D507F441EBC88B700B56834 /* libdouble-conversion.a */,
808822
2D66FF8E1ECA405900F0A767 /* libdouble-conversion.a */,
823+
AD9FBECC1FD7597F00CADA08 /* libprivatedata.a */,
824+
AD9FBECE1FD7597F00CADA08 /* libprivatedata-tvOS.a */,
809825
);
810826
name = Products;
811827
sourceTree = "<group>";
@@ -1478,6 +1494,20 @@
14781494
remoteRef = 834C36D11AF8DA610019C93C /* PBXContainerItemProxy */;
14791495
sourceTree = BUILT_PRODUCTS_DIR;
14801496
};
1497+
AD9FBECC1FD7597F00CADA08 /* libprivatedata.a */ = {
1498+
isa = PBXReferenceProxy;
1499+
fileType = archive.ar;
1500+
path = libprivatedata.a;
1501+
remoteRef = AD9FBECB1FD7597F00CADA08 /* PBXContainerItemProxy */;
1502+
sourceTree = BUILT_PRODUCTS_DIR;
1503+
};
1504+
AD9FBECE1FD7597F00CADA08 /* libprivatedata-tvOS.a */ = {
1505+
isa = PBXReferenceProxy;
1506+
fileType = archive.ar;
1507+
path = "libprivatedata-tvOS.a";
1508+
remoteRef = AD9FBECD1FD7597F00CADA08 /* PBXContainerItemProxy */;
1509+
sourceTree = BUILT_PRODUCTS_DIR;
1510+
};
14811511
D85B829C1AB6D5CE003F4FE2 /* libRCTVibration.a */ = {
14821512
isa = PBXReferenceProxy;
14831513
fileType = archive.ar;

RNTester/RNTesterIntegrationTests/RNTesterSnapshotTests.m

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,6 @@ - (void)test##name \
4444
RCT_TEST(ARTExample)
4545
RCT_TEST(ScrollViewExample)
4646
RCT_TEST(TextExample)
47-
#if !TARGET_OS_TV
48-
// No switch or slider available on tvOS
49-
RCT_TEST(SwitchExample)
50-
RCT_TEST(SliderExample)
51-
// TabBarExample on tvOS passes locally but not on Travis
52-
RCT_TEST(TabBarExample)
53-
#endif
5447

5548
- (void)testZZZNotInRecordMode
5649
{

RNTester/js/RNTesterApp.ios.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
*/
1212
'use strict';
1313

14+
require('MessageQueue').spy(true);
15+
1416
const AsyncStorage = require('AsyncStorage');
1517
const BackHandler = require('BackHandler');
1618
const Linking = require('Linking');

React/Base/RCTVersion.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
@"major": @(0), \
1414
@"minor": @(51), \
1515
@"patch": @(0), \
16-
@"prerelease": @"rc.3", \
16+
@"prerelease": [NSNull null], \
1717
}

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.51.0-rc.3
1+
VERSION_NAME=0.51.0
22
GROUP=com.facebook.react
33

44
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
@@ -20,5 +20,5 @@ public class ReactNativeVersion {
2020
"major", 0,
2121
"minor", 51,
2222
"patch", 0,
23-
"prerelease", "rc.3");
23+
"prerelease", null);
2424
}

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",
3-
"version": "0.51.0-rc.3",
3+
"version": "0.51.0",
44
"description": "A framework for building native apps using React",
55
"license": "BSD-3-Clause",
66
"repository": {

0 commit comments

Comments
 (0)