diff --git a/Libraries/Core/ReactNativeVersion.js b/Libraries/Core/ReactNativeVersion.js index 93285bfa0c1..695690bcd76 100644 --- a/Libraries/Core/ReactNativeVersion.js +++ b/Libraries/Core/ReactNativeVersion.js @@ -15,6 +15,6 @@ exports.version = { major: 0, minor: 52, - patch: 0, + patch: 1, prerelease: null, }; diff --git a/React/Base/RCTVersion.h b/React/Base/RCTVersion.h index 88a46d6c8e5..f338d9fddb9 100644 --- a/React/Base/RCTVersion.h +++ b/React/Base/RCTVersion.h @@ -12,6 +12,6 @@ #define RCT_REACT_NATIVE_VERSION @{ \ @"major": @(0), \ @"minor": @(52), \ - @"patch": @(0), \ + @"patch": @(1), \ @"prerelease": [NSNull null], \ } diff --git a/ReactAndroid/gradle.properties b/ReactAndroid/gradle.properties index 13a33690d8c..429da2c1645 100644 --- a/ReactAndroid/gradle.properties +++ b/ReactAndroid/gradle.properties @@ -1,4 +1,4 @@ -VERSION_NAME=0.52.0 +VERSION_NAME=0.52.1 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 a52a0a395ab..9ea915bda88 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", 52, - "patch", 0, + "patch", 1, "prerelease", null); } diff --git a/package.json b/package.json index 17e34d86b1d..42b32219613 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-native", - "version": "0.52.0", + "version": "0.52.1", "description": "A framework for building native apps using React", "license": "BSD-3-Clause", "repository": {