diff --git a/Libraries/Core/ReactNativeVersion.js b/Libraries/Core/ReactNativeVersion.js index 9c80d0241d9631..81f9817bab0666 100644 --- a/Libraries/Core/ReactNativeVersion.js +++ b/Libraries/Core/ReactNativeVersion.js @@ -15,6 +15,6 @@ exports.version = { major: 0, minor: 54, - patch: 3, + patch: 4, prerelease: null, }; diff --git a/React/Base/RCTVersion.h b/React/Base/RCTVersion.h index 0903c72ecc310f..305a819487a39b 100644 --- a/React/Base/RCTVersion.h +++ b/React/Base/RCTVersion.h @@ -12,6 +12,6 @@ #define RCT_REACT_NATIVE_VERSION @{ \ @"major": @(0), \ @"minor": @(54), \ - @"patch": @(3), \ + @"patch": @(4), \ @"prerelease": [NSNull null], \ } diff --git a/ReactAndroid/gradle.properties b/ReactAndroid/gradle.properties index 00aabba4a9bb8d..4b8548d919967f 100644 --- a/ReactAndroid/gradle.properties +++ b/ReactAndroid/gradle.properties @@ -1,4 +1,4 @@ -VERSION_NAME=0.54.3 +VERSION_NAME=0.54.4 GROUP=com.facebook.react POM_NAME=ReactNative diff --git a/ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo/ReactNativeVersion.java b/ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo/ReactNativeVersion.java index 35b72bc8d07cf0..81a1594676e86d 100644 --- a/ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo/ReactNativeVersion.java +++ b/ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo/ReactNativeVersion.java @@ -19,6 +19,6 @@ public class ReactNativeVersion { public static final Map VERSION = MapBuilder.of( "major", 0, "minor", 54, - "patch", 3, + "patch", 4, "prerelease", null); } diff --git a/package.json b/package.json index 1d52558d4dc802..baebc76886d3fd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-native", - "version": "0.54.3", + "version": "0.54.4", "description": "A framework for building native apps using React", "license": "BSD-3-Clause", "repository": {