[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.
*
* 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: 61,
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: @(61),
RCTVersionPatch: @(0),
RCTVersionPrerelease: @"rc.0",
};
});
return __rnVersion;
}

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

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

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

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

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

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