[0.55.0-rc.0] Bump version numbers

This commit is contained in:
Mike Grabowski 2018-03-12 23:53:13 +01:00
parent 9c8c597000
commit 9c29faf6a9
5 changed files with 9 additions and 9 deletions

View File

@ -12,7 +12,7 @@
exports.version = {
major: 0,
minor: 0,
minor: 55,
patch: 0,
prerelease: null,
prerelease: 'rc.0',
};

View File

@ -21,9 +21,9 @@ static void __makeVersion()
{
__rnVersion = @{
RCTVersionMajor: @(0),
RCTVersionMinor: @(0),
RCTVersionMinor: @(55),
RCTVersionPatch: @(0),
RCTVersionPrerelease: [NSNull null],
RCTVersionPrerelease: @"rc.0",
};
}

View File

@ -1,4 +1,4 @@
VERSION_NAME=1000.0.0-master
VERSION_NAME=0.55.0-rc.0
GROUP=com.facebook.react
POM_NAME=ReactNative

View File

@ -16,7 +16,7 @@ import java.util.Map;
public class ReactNativeVersion {
public static final Map<String, Object> VERSION = MapBuilder.<String, Object>of(
"major", 0,
"minor", 0,
"minor", 55,
"patch", 0,
"prerelease", null);
"prerelease", "rc.0");
}

View File

@ -1,6 +1,6 @@
{
"name": "react-native",
"version": "1000.0.0",
"version": "0.55.0-rc.0",
"description": "A framework for building native apps using React",
"license": "MIT",
"repository": {
@ -224,4 +224,4 @@
"shelljs": "^0.7.8",
"sinon": "^2.2.0"
}
}
}