Compare commits

...
Author SHA1 Message Date
Hector Ramos 49e35bd939 [0.54.0-rc.0] Bump version numbers 2018-02-12 12:19:05 -08:00
Mike Grabowski 829f675b8b [0.54.0-rc.2] Bump version numbers 2018-02-12 17:38:28 +01:00
Mike Grabowski b58d848d9c Fix CI publish step 2018-02-12 17:38:22 +01:00
Mike Grabowski 294d95a236 [0.54.0-rc.0] Bump version numbers 2018-02-12 13:10:05 +01:00
6 changed files with 12 additions and 8 deletions
+4
View File
@@ -383,6 +383,9 @@ jobs:
publish_npm_package:
<<: *android_defaults
steps:
# Checkout code so that we can work with `git` in publish.js
- checkout
- attach_workspace:
at: ~/react-native
@@ -606,6 +609,7 @@ workflows:
- approve_publish_npm_package:
filters: *filter-only-stable
type: approval
- publish_npm_package:
requires:
- checkout_code
+2 -2
View File
@@ -14,7 +14,7 @@
exports.version = {
major: 0,
minor: 0,
minor: 54,
patch: 0,
prerelease: null,
prerelease: 'rc.0',
};
+2 -2
View File
@@ -11,7 +11,7 @@
#define RCT_REACT_NATIVE_VERSION @{ \
@"major": @(0), \
@"minor": @(0), \
@"minor": @(54), \
@"patch": @(0), \
@"prerelease": [NSNull null], \
@"prerelease": @"rc.0", \
}
+1 -1
View File
@@ -1,4 +1,4 @@
VERSION_NAME=1000.0.0-master
VERSION_NAME=0.54.0-rc.0
GROUP=com.facebook.react
POM_NAME=ReactNative
@@ -18,7 +18,7 @@ import java.util.Map;
public class ReactNativeVersion {
public static final Map<String, Object> VERSION = MapBuilder.<String, Object>of(
"major", 0,
"minor", 0,
"minor", 54,
"patch", 0,
"prerelease", null);
"prerelease", "rc.0");
}
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "react-native",
"version": "1000.0.0",
"version": "0.54.0-rc.0",
"description": "A framework for building native apps using React",
"license": "BSD-3-Clause",
"repository": {