Skip to content

Commit 5f0226e

Browse files
committed
Merge branch 'master' of https://github.com/Instabug/Instabug-React-Native into feature/typescript-validation
2 parents e90f977 + 475d8ba commit 5f0226e

File tree

5 files changed

+24
-5
lines changed

5 files changed

+24
-5
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- restore_cache:
2121
key: node-v1-{{ checksum "package.json" }}-{{ arch }}
2222

23-
- run: yarn install
23+
- run: yarn
2424

2525
- save_cache:
2626
key: yarn-v1-{{ checksum "yarn.lock" }}-{{ arch }}
@@ -94,7 +94,7 @@ jobs:
9494
steps:
9595
- checkout:
9696
path: ~/project
97-
- run: yarn install
97+
- run: yarn
9898
- run:
9999
name: chmod permissions
100100
command: cd android && chmod +x ./gradlew

.github/pull_request_template.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
## Description of the change
2+
> Description goes here
3+
## Type of change
4+
- [ ] Bug fix (non-breaking change that fixes an issue)
5+
- [ ] New feature (non-breaking change that adds functionality)
6+
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
7+
## Related issues
8+
> Issue links go here
9+
## Checklists
10+
### Development
11+
- [ ] Lint rules pass locally
12+
- [ ] The code changed/added as part of this pull request has been covered with tests
13+
### Code review
14+
- [ ] This pull request has a descriptive title and information useful to a reviewer
15+
- [ ] Issue from task tracker has a link to this pull request

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11

2+
## v9.1.9 (2020-10-01)
3+
4+
* Bumps Instabug native Android SDK to v9.1.8
5+
26
## v9.1.8 (2020-09-16)
37

48
* Adds support for react-navigation v5

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ android {
2929
dependencies {
3030
implementation 'com.android.support:multidex:1.0.3'
3131
implementation 'com.facebook.react:react-native:+'
32-
api('com.instabug.library:instabug:9.1.7.0') {
32+
api('com.instabug.library:instabug:9.1.8.1') {
3333
exclude group: 'com.android.support:appcompat-v7'
3434
}
3535
testImplementation 'org.mockito:mockito-core:1.10.19'

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "instabug-reactnative",
3-
"version": "9.1.8",
3+
"version": "9.1.9",
44
"description": "React Native plugin for integrating the Instabug SDK",
55
"main": "index.js",
66
"types": "index.d.ts",
@@ -34,7 +34,7 @@
3434
"devDependencies": {
3535
"babel-core": "7.0.0-bridge.0",
3636
"babel-jest": "^24.8.0",
37-
"codecov": "^3.7.0",
37+
"codecov": "~3.7.0",
3838
"jest": "^24.8.0",
3939
"metro-react-native-babel-preset": "0.51.1",
4040
"react": "^16.8.6",

0 commit comments

Comments
 (0)