Skip to content

Commit

Permalink
[0.54.0-rc.0] Bump version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
grabbou committed Feb 12, 2018
1 parent 9d21496 commit 294d95a
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions Libraries/Core/ReactNativeVersion.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

exports.version = {
major: 0,
minor: 0,
minor: 54,
patch: 0,
prerelease: null,
prerelease: 'rc.0',
};
4 changes: 2 additions & 2 deletions React/Base/RCTVersion.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

#define RCT_REACT_NATIVE_VERSION @{ \
@"major": @(0), \
@"minor": @(0), \
@"minor": @(54), \
@"patch": @(0), \
@"prerelease": [NSNull null], \
@"prerelease": @"rc.0", \
}
2 changes: 1 addition & 1 deletion ReactAndroid/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION_NAME=1000.0.0-master
VERSION_NAME=0.54.0-rc.0
GROUP=com.facebook.react

POM_NAME=ReactNative
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
public class ReactNativeVersion {
public static final Map<String, Object> VERSION = MapBuilder.<String, Object>of(
"major", 0,
"minor", 0,
"minor", 54,
"patch", 0,
"prerelease", null);
"prerelease", "rc.0");
}
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native",
"version": "1000.0.0",
"version": "0.54.0-rc.0",
"description": "A framework for building native apps using React",
"license": "BSD-3-Clause",
"repository": {
Expand Down Expand Up @@ -224,4 +224,4 @@
"shelljs": "^0.7.8",
"sinon": "^2.2.0"
}
}
}

0 comments on commit 294d95a

Please sign in to comment.