[0.61.0-rc.0] Bump version numbers

This commit is contained in:
grabbou 2019-08-22 12:21:46 +02:00
Родитель 612c033918
Коммит 9296ab1a61
6 изменённых файлов: 15 добавлений и 15 удалений

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

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

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

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

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

@ -1,4 +1,4 @@
VERSION_NAME=1000.0.0-master VERSION_NAME=0.61.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", 61,
"patch", 0, "patch", 0,
"prerelease", null); "prerelease", "rc.0");
} }

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

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

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

@ -10,7 +10,7 @@
}, },
"dependencies": { "dependencies": {
"react": "16.8.1", "react": "16.8.1",
"react-native": "1000.0.0" "react-native": "0.61.0-rc.0"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "^7.5.0", "@babel/core": "^7.5.0",