diff --git a/CHANGELOG.md b/CHANGELOG.md index 871b53b6..140f372f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ Changelog ========= +## 2.2.3 (2017-04-27) + +### Bug fixes + +* Fix regression where iOS headers are copied into an incorrect location + [#98](https://github.com/bugsnag/bugsnag-react-native/issues/98) + + ## 2.2.2 (2017-04-26) ### Bug fixes diff --git a/README.md b/README.md index e2d6ef8f..ce402944 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Bugsnag exception reporter for React Native -[![Documentation](https://img.shields.io/badge/documentation-2.2.2-blue.svg)](http://docs.bugsnag.com/platforms/react-native/) +[![Documentation](https://img.shields.io/badge/documentation-2.2.3-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. diff --git a/android/build.gradle b/android/build.gradle index a74af769..9ff22e01 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -8,7 +8,7 @@ android { minSdkVersion 16 targetSdkVersion 23 versionCode 1 - versionName '2.2.2' + versionName '2.2.3' } } diff --git a/package.json b/package.json index bd2fad25..edc884cb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bugsnag-react-native", - "version": "2.2.2", + "version": "2.2.3", "license": "MIT", "main": "index.js", "nativePackage": true,