Revert "[0.59.0-rc.0] Bump version numbers"

This reverts commit 69e5c2ddc1.
This commit is contained in:
Mike Grabowski 2019-02-13 16:47:27 +01:00
Родитель 69e5c2ddc1
Коммит 9f96606d32
5 изменённых файлов: 11 добавлений и 11 удалений

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

@ -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: 59, minor: 0,
patch: 0, patch: 0,
prerelease: 'rc.0', prerelease: null,
}; };

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

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

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

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

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

@ -1,6 +1,6 @@
{ {
"name": "react-native", "name": "react-native",
"version": "0.59.0-rc.0", "version": "1000.0.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": {