Skip to content

Commit

Permalink
[0.49.5] Bump version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
grabbou authored and hramos committed Oct 27, 2017
1 parent 84241fb commit 07f48eb
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Libraries/Core/ReactNativeVersion.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
exports.version = {
major: 0,
minor: 49,
patch: 4,
patch: 5,
prerelease: null,
};
2 changes: 1 addition & 1 deletion React/Base/RCTVersion.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
#define REACT_NATIVE_VERSION @{ \
@"major": @(0), \
@"minor": @(49), \
@"patch": @(4), \
@"patch": @(5), \
@"prerelease": [NSNull null], \
}
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=0.49.4
VERSION_NAME=0.49.5
GROUP=com.facebook.react

POM_NAME=ReactNative
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ public class ReactNativeVersion {
public static final Map<String, Object> VERSION = MapBuilder.<String, Object>of(
"major", 0,
"minor", 49,
"patch", 4,
"patch", 5,
"prerelease", null);
}
4 changes: 0 additions & 4 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,12 @@ dependencies:
- npm install
# for eslint bot
- npm install [email protected]
# for website, danger
- cd website && npm install
- cd danger && npm install
cache_directories:
- "ReactAndroid/build/downloads"
- "/home/ubuntu/buck"
- "website/node_modules"
- "node_modules"
- "danger/node_modules"

test:
pre:
Expand All @@ -53,7 +50,6 @@ test:

override:
# Run Danger against PRs. This GitHub token grants public_repo access scope. The associated account has no privileged access to the React Native repo. The token must be split in this manner to avoid revocation by GitHub.
- cd danger && DANGER_GITHUB_API_TOKEN="e622517d9f1136ea8900""07c6373666312cdfaa69" npm run danger
# eslint bot. This GitHub token grants public_repo access scope. The token must be split in this manner to avoid revocation by GitHub.
- cat <(echo eslint; npm run lint --silent -- --format=json; echo flow; npm run flow --silent -- check --json) | GITHUB_TOKEN="af6ef0d15709bc91d""06a6217a5a826a226fb57b7" CI_USER=$CIRCLE_PROJECT_USERNAME CI_REPO=$CIRCLE_PROJECT_REPONAME PULL_REQUEST_NUMBER=$CIRCLE_PR_NUMBER node bots/code-analysis-bot.js
- npm run lint
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native",
"version": "0.49.4",
"version": "0.49.5",
"description": "A framework for building native apps using React",
"license": "BSD-3-Clause",
"repository": {
Expand Down

0 comments on commit 07f48eb

Please sign in to comment.