Skip to content

Commit

Permalink
[0.59.0-rc.0] Bump version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
hramos committed Feb 13, 2019
1 parent 51b66c0 commit 5a31469
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions Libraries/Core/ReactNativeVersion.js
@@ -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: 59,
patch: 0,
prerelease: null,
prerelease: 'rc.0',
};
4 changes: 2 additions & 2 deletions React/Base/RCTVersion.m
Expand Up @@ -21,9 +21,9 @@ static void __makeVersion()
{
__rnVersion = @{
RCTVersionMajor: @(0),
RCTVersionMinor: @(0),
RCTVersionMinor: @(59),
RCTVersionPatch: @(0),
RCTVersionPrerelease: [NSNull null],
RCTVersionPrerelease: @"rc.0",
};
}

Expand Down
2 changes: 1 addition & 1 deletion ReactAndroid/gradle.properties
@@ -1,4 +1,4 @@
VERSION_NAME=1000.0.0-master
VERSION_NAME=0.59.0-rc.0
GROUP=com.facebook.react

POM_NAME=ReactNative
Expand Down
Expand Up @@ -16,7 +16,7 @@
public class ReactNativeVersion {
public static final Map<String, Object> VERSION = MapBuilder.<String, Object>of(
"major", 0,
"minor", 0,
"minor", 59,
"patch", 0,
"prerelease", null);
"prerelease", "rc.0");
}
4 changes: 2 additions & 2 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "react-native",
"version": "1000.0.0",
"version": "0.59.0-rc.0",
"description": "A framework for building native apps using React",
"license": "MIT",
"repository": {
Expand Down Expand Up @@ -255,4 +255,4 @@
}
}
}
}
}

0 comments on commit 5a31469

Please sign in to comment.