[0.55.0-rc.0] Bump version numbers
This commit is contained in:
parent
9c8c597000
commit
9c29faf6a9
|
@ -12,7 +12,7 @@
|
||||||
|
|
||||||
exports.version = {
|
exports.version = {
|
||||||
major: 0,
|
major: 0,
|
||||||
minor: 0,
|
minor: 55,
|
||||||
patch: 0,
|
patch: 0,
|
||||||
prerelease: null,
|
prerelease: 'rc.0',
|
||||||
};
|
};
|
||||||
|
|
|
@ -21,9 +21,9 @@ static void __makeVersion()
|
||||||
{
|
{
|
||||||
__rnVersion = @{
|
__rnVersion = @{
|
||||||
RCTVersionMajor: @(0),
|
RCTVersionMajor: @(0),
|
||||||
RCTVersionMinor: @(0),
|
RCTVersionMinor: @(55),
|
||||||
RCTVersionPatch: @(0),
|
RCTVersionPatch: @(0),
|
||||||
RCTVersionPrerelease: [NSNull null],
|
RCTVersionPrerelease: @"rc.0",
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
VERSION_NAME=1000.0.0-master
|
VERSION_NAME=0.55.0-rc.0
|
||||||
GROUP=com.facebook.react
|
GROUP=com.facebook.react
|
||||||
|
|
||||||
POM_NAME=ReactNative
|
POM_NAME=ReactNative
|
||||||
|
|
|
@ -16,7 +16,7 @@ import java.util.Map;
|
||||||
public class ReactNativeVersion {
|
public class ReactNativeVersion {
|
||||||
public static final Map<String, Object> VERSION = MapBuilder.<String, Object>of(
|
public static final Map<String, Object> VERSION = MapBuilder.<String, Object>of(
|
||||||
"major", 0,
|
"major", 0,
|
||||||
"minor", 0,
|
"minor", 55,
|
||||||
"patch", 0,
|
"patch", 0,
|
||||||
"prerelease", null);
|
"prerelease", "rc.0");
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "react-native",
|
"name": "react-native",
|
||||||
"version": "1000.0.0",
|
"version": "0.55.0-rc.0",
|
||||||
"description": "A framework for building native apps using React",
|
"description": "A framework for building native apps using React",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": {
|
"repository": {
|
||||||
|
@ -224,4 +224,4 @@
|
||||||
"shelljs": "^0.7.8",
|
"shelljs": "^0.7.8",
|
||||||
"sinon": "^2.2.0"
|
"sinon": "^2.2.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue