Skip to content

Commit

Permalink
Merge pull request #99 from bugsnag/kattrali/fix-nonmodular-includes
Browse files Browse the repository at this point in the history
Fix non-modular includes error when using Bugsnag via CocoaPods from another pod
  • Loading branch information
kattrali committed Feb 17, 2016
2 parents 5b37e74 + 1e25347 commit f378717
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
5 changes: 3 additions & 2 deletions Bugsnag.podspec.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Bugsnag",
"version": "5.0.0",
"version": "5.0.1",
"summary": "Cocoa notifier for SDK for bugsnag.com",
"homepage": "https://bugsnag.com",
"license": "MIT",
Expand All @@ -21,7 +21,8 @@
],
"requires_arc": true,
"public_header_files": [
"Source/*.h"
"Source/BSGKSCrashReportWriter.h",
"Source/Bugsnag{,MetaData,Configuration,Breadcrumb}.h"
],
"dependencies": {
"KSCrash/Reporting": [
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
Changelog
=========

## 5.0.1

### Bug Fixes

* Fix header issue when linking to Bugsnag via CocoaPods from within another pod
[#98](https://github.com/bugsnag/bugsnag-cocoa/issues/98)
[#99](https://github.com/bugsnag/bugsnag-cocoa/pull/99)
- Related to: [CocoaPods#4420](https://github.com/cocoapods/cocoapods/issues/4420)

## 5.0.0

This release includes an upgrade to [KSCrash](https://github.com/kstenerud/KSCrash)
Expand Down
2 changes: 1 addition & 1 deletion Source/BugsnagNotifier.m
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
#include <sys/utsname.h>
#endif

NSString *const NOTIFIER_VERSION = @"5.0.0";
NSString *const NOTIFIER_VERSION = @"5.0.1";
NSString *const NOTIFIER_URL = @"https://github.com/bugsnag/bugsnag-cocoa";
NSString *const BSTabCrash = @"crash";
NSString *const BSTabConfig = @"config";
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.0.0
5.0.1

0 comments on commit f378717

Please sign in to comment.