Skip to content
This repository has been archived by the owner on Sep 14, 2020. It is now read-only.

Commit

Permalink
v2.5.4
Browse files Browse the repository at this point in the history
  • Loading branch information
fractalwrench committed Nov 6, 2017
1 parent d529ff9 commit 0252b7a
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 7 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
Changelog
=========
## 2.5.4 (2017-11-06)

* Update Cocoa code to fix archive issue on older versions of XCode

## 2.5.3 (2017-11-02)

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ endif

# Makes a release and pushes to github/npm
release:
ifeq ($(VERSION),)g
ifeq ($(VERSION),)
@$(error VERSION is not defined. Run with `make VERSION=number release`)
endif
make VERSION=$(VERSION) bump && git commit -am "v$(VERSION)" && git tag v$(VERSION) \
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Bugsnag exception reporter for React Native
[![Documentation](https://img.shields.io/badge/documentation-2.5.3-blue.svg)](http://docs.bugsnag.com/platforms/react-native/)
[![Documentation](https://img.shields.io/badge/documentation-2.5.4-blue.svg)](http://docs.bugsnag.com/platforms/react-native/)

Automatic [React Native error reporting](https://www.bugsnag.com/platforms/react-native-error-reporting/) with Bugsnag helps you detect both native OS and JavaScript errors in your React Native apps.

Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ android {
minSdkVersion 16
targetSdkVersion 23
versionCode 4
versionName '2.5.3'
versionName '2.5.4'
}
}

Expand Down
Empty file modified cocoa/vendor/bugsnag-cocoa/Source/BSGConnectivity.h
100755 → 100644
Empty file.
Empty file modified cocoa/vendor/bugsnag-cocoa/Source/BSGConnectivity.m
100755 → 100644
Empty file.
5 changes: 2 additions & 3 deletions cocoa/vendor/bugsnag-cocoa/Source/BugsnagNotifier.m
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,10 @@
#import <AppKit/AppKit.h>
#endif

NSString *const NOTIFIER_VERSION = @"5.13.2";
NSString *const NOTIFIER_VERSION = @"5.13.3";
NSString *const NOTIFIER_URL = @"https://github.com/bugsnag/bugsnag-cocoa";
NSString *const BSTabCrash = @"crash";
NSString *const BSAttributeDepth = @"depth";
NSString *const BSAttributeBreadcrumbs = BSGKeyBreadcrumbs;
NSString *const BSEventLowMemoryWarning = @"lowMemoryWarning";

static NSInteger const BSGNotifierStackFrameCount = 5;
Expand Down Expand Up @@ -473,7 +472,7 @@ - (void)clearBreadcrumbs {
- (void)serializeBreadcrumbs {
BugsnagBreadcrumbs *crumbs = self.configuration.breadcrumbs;
NSArray *arrayValue = crumbs.count == 0 ? nil : [crumbs arrayValue];
[self.state addAttribute:BSAttributeBreadcrumbs
[self.state addAttribute:BSGKeyBreadcrumbs
withValue:arrayValue
toTabWithName:BSTabCrash];
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"homepage": "https://www.bugsnag.com/platforms/react-native-error-reporting/",
"repository": "https://github.com/bugsnag/bugsnag-react-native.git",
"bugs": "https://github.com/bugsnag/bugsnag-react-native/issues",
"version": "2.5.3",
"version": "2.5.4",
"license": "MIT",
"main": "index.js",
"nativePackage": true,
Expand Down

0 comments on commit 0252b7a

Please sign in to comment.