Skip to content

Commit af6de4e

Browse files
committed
[0.59.0-rc.0] Bump version numbers
1 parent b2f5e45 commit af6de4e

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

Libraries/Core/ReactNativeVersion.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
/**
2+
* @generated by scripts/bump-oss-version.js
3+
*
24
* Copyright (c) Facebook, Inc. and its affiliates.
35
*
46
* This source code is licensed under the MIT license found in the
57
* LICENSE file in the root directory of this source tree.
68
*
7-
* @format
8-
* @generated by scripts/bump-oss-version.js
99
* @flow
1010
*/
1111

1212
exports.version = {
1313
major: 0,
14-
minor: 0,
14+
minor: 59,
1515
patch: 0,
16-
prerelease: null,
16+
prerelease: 'rc.0',
1717
};

React/Base/RCTVersion.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ static void __makeVersion()
2121
{
2222
__rnVersion = @{
2323
RCTVersionMajor: @(0),
24-
RCTVersionMinor: @(0),
24+
RCTVersionMinor: @(59),
2525
RCTVersionPatch: @(0),
26-
RCTVersionPrerelease: [NSNull null],
26+
RCTVersionPrerelease: @"rc.0",
2727
};
2828
}
2929

ReactAndroid/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION_NAME=1000.0.0-master
1+
VERSION_NAME=0.59.0-rc.0
22
GROUP=com.facebook.react
33

44
POM_NAME=ReactNative

ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo/ReactNativeVersion.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
public class ReactNativeVersion {
1717
public static final Map<String, Object> VERSION = MapBuilder.<String, Object>of(
1818
"major", 0,
19-
"minor", 0,
19+
"minor", 59,
2020
"patch", 0,
21-
"prerelease", null);
21+
"prerelease", "rc.0");
2222
}

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native",
3-
"version": "1000.0.0",
3+
"version": "0.59.0-rc.0",
44
"description": "A framework for building native apps using React",
55
"license": "MIT",
66
"repository": {
@@ -255,4 +255,4 @@
255255
}
256256
}
257257
}
258-
}
258+
}

0 commit comments

Comments
 (0)