[0.62.0-rc.0] Bump version numbers

This commit is contained in:
Lorenzo Sciandra 2019-12-18 15:36:07 +00:00
Родитель e7c289b56e
Коммит 203f3e3399
6 изменённых файлов: 15 добавлений и 15 удалений

Просмотреть файл

@ -1,17 +1,17 @@
/**
* @generated by scripts/bump-oss-version.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @format
* @generated by scripts/bump-oss-version.js
* @flow
*/
exports.version = {
major: 0,
minor: 0,
minor: 62,
patch: 0,
prerelease: null,
prerelease: 'rc.0',
};

Просмотреть файл

@ -21,11 +21,11 @@ NSDictionary* RCTGetReactNativeVersion(void)
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^(void){
__rnVersion = @{
RCTVersionMajor: @(0),
RCTVersionMinor: @(0),
RCTVersionPatch: @(0),
RCTVersionPrerelease: [NSNull null],
};
RCTVersionMajor: @(0),
RCTVersionMinor: @(62),
RCTVersionPatch: @(0),
RCTVersionPrerelease: @"rc.0",
};
});
return __rnVersion;
}

Просмотреть файл

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

Просмотреть файл

@ -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", 62,
"patch", 0,
"prerelease", null);
"prerelease", "rc.0");
}

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "react-native",
"version": "1000.0.0",
"version": "0.62.0-rc.0",
"bin": "./cli.js",
"description": "A framework for building native apps using React",
"license": "MIT",
@ -174,4 +174,4 @@
}
}
}
}
}

Просмотреть файл

@ -10,7 +10,7 @@
},
"dependencies": {
"react": "16.11.0",
"react-native": "1000.0.0"
"react-native": "0.62.0-rc.0"
},
"devDependencies": {
"@babel/core": "^7.6.2",