react-native 0.87.0-rc.4 → 0.87.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -29,7 +29,7 @@ export default class ReactNativeVersion {
29
29
  static major: number = 0;
30
30
  static minor: number = 87;
31
31
  static patch: number = 0;
32
- static prerelease: string | null = 'rc.4';
32
+ static prerelease: string | null = null;
33
33
 
34
34
  static getVersionString(): string {
35
35
  return `${this.major}.${this.minor}.${this.patch}${this.prerelease != null ? `-${this.prerelease}` : ''}`;
@@ -24,7 +24,7 @@ NSDictionary* RCTGetReactNativeVersion(void)
24
24
  RCTVersionMajor: @(0),
25
25
  RCTVersionMinor: @(87),
26
26
  RCTVersionPatch: @(0),
27
- RCTVersionPrerelease: @"rc.4",
27
+ RCTVersionPrerelease: [NSNull null],
28
28
  };
29
29
  });
30
30
  return __rnVersion;
@@ -1,4 +1,4 @@
1
- VERSION_NAME=0.87.0-rc.4
1
+ VERSION_NAME=0.87.0
2
2
  react.internal.publishingGroup=com.facebook.react
3
3
  react.internal.hermesPublishingGroup=com.facebook.hermes
4
4
 
@@ -15,6 +15,6 @@ public object ReactNativeVersion {
15
15
  "major" to 0,
16
16
  "minor" to 87,
17
17
  "patch" to 0,
18
- "prerelease" to "rc.4"
18
+ "prerelease" to null
19
19
  )
20
20
  }
@@ -22,7 +22,7 @@ struct ReactNativeVersionType {
22
22
  int32_t Major = 0;
23
23
  int32_t Minor = 87;
24
24
  int32_t Patch = 0;
25
- std::string_view Prerelease = "rc.4";
25
+ std::string_view Prerelease = "";
26
26
  };
27
27
 
28
28
  constexpr ReactNativeVersionType ReactNativeVersion;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native",
3
- "version": "0.87.0-rc.4",
3
+ "version": "0.87.0",
4
4
  "description": "A framework for building native apps using React",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -150,12 +150,12 @@
150
150
  }
151
151
  },
152
152
  "dependencies": {
153
- "@react-native/asset-utils": "0.87.0-rc.4",
154
- "@react-native/codegen": "0.87.0-rc.4",
155
- "@react-native/community-cli-plugin": "0.87.0-rc.4",
156
- "@react-native/gradle-plugin": "0.87.0-rc.4",
157
- "@react-native/normalize-colors": "0.87.0-rc.4",
158
- "@react-native/virtualized-lists": "0.87.0-rc.4",
153
+ "@react-native/asset-utils": "0.87.0",
154
+ "@react-native/codegen": "0.87.0",
155
+ "@react-native/community-cli-plugin": "0.87.0",
156
+ "@react-native/gradle-plugin": "0.87.0",
157
+ "@react-native/normalize-colors": "0.87.0",
158
+ "@react-native/virtualized-lists": "0.87.0",
159
159
  "anser": "^1.4.9",
160
160
  "ansi-regex": "^5.0.0",
161
161
  "babel-plugin-syntax-hermes-parser": "0.36.1",