Skip to content

Commit 07f48eb

Browse files
grabbouhramos
authored andcommitted
[0.49.5] Bump version numbers
1 parent 84241fb commit 07f48eb

File tree

6 files changed

+5
-9
lines changed

6 files changed

+5
-9
lines changed

Libraries/Core/ReactNativeVersion.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
exports.version = {
1616
major: 0,
1717
minor: 49,
18-
patch: 4,
18+
patch: 5,
1919
prerelease: null,
2020
};

React/Base/RCTVersion.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212
#define REACT_NATIVE_VERSION @{ \
1313
@"major": @(0), \
1414
@"minor": @(49), \
15-
@"patch": @(4), \
15+
@"patch": @(5), \
1616
@"prerelease": [NSNull null], \
1717
}

ReactAndroid/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION_NAME=0.49.4
1+
VERSION_NAME=0.49.5
22
GROUP=com.facebook.react
33

44
POM_NAME=ReactNative

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ public class ReactNativeVersion {
1919
public static final Map<String, Object> VERSION = MapBuilder.<String, Object>of(
2020
"major", 0,
2121
"minor", 49,
22-
"patch", 4,
22+
"patch", 5,
2323
"prerelease", null);
2424
}

circle.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,12 @@ dependencies:
3434
- npm install
3535
# for eslint bot
3636
- npm install github@0.2.4
37-
# for website, danger
3837
- cd website && npm install
39-
- cd danger && npm install
4038
cache_directories:
4139
- "ReactAndroid/build/downloads"
4240
- "/home/ubuntu/buck"
4341
- "website/node_modules"
4442
- "node_modules"
45-
- "danger/node_modules"
4643

4744
test:
4845
pre:
@@ -53,7 +50,6 @@ test:
5350

5451
override:
5552
# 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.
56-
- cd danger && DANGER_GITHUB_API_TOKEN="e622517d9f1136ea8900""07c6373666312cdfaa69" npm run danger
5753
# eslint bot. This GitHub token grants public_repo access scope. The token must be split in this manner to avoid revocation by GitHub.
5854
- 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
5955
- npm run lint

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native",
3-
"version": "0.49.4",
3+
"version": "0.49.5",
44
"description": "A framework for building native apps using React",
55
"license": "BSD-3-Clause",
66
"repository": {

0 commit comments

Comments
 (0)