From 7b3b02b0b67edc19599b0d26d9c0b72e09d6341a Mon Sep 17 00:00:00 2001 From: fractalwrench Date: Fri, 9 Mar 2018 15:59:36 +0000 Subject: [PATCH] v4.3.2 --- CHANGELOG.md | 15 +++++++++++++++ CONTRIBUTING.md | 2 +- gradle.properties | 2 +- .../main/java/com/bugsnag/android/Notifier.java | 2 +- 4 files changed, 18 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d488adb58e..8336437fed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## 4.3.2 (2018-03-09) + +### Bug fixes + +* Prevent ConcurrentModificationException in Before notify/breadcrumb callbacks [#266](https://github.com/bugsnag/bugsnag-android/pull/266) +* Ensure that exception message is never null [#256](https://github.com/bugsnag/bugsnag-android/pull/256) +* Add payload version to JSON body [#244](https://github.com/bugsnag/bugsnag-android/pull/244) +* Update context tracking to use lifecycle callbacks rather than ActivityManager [#238](https://github.com/bugsnag/bugsnag-android/pull/238) + +### Enhancements + +* Detect whether running on emulator [#245](https://github.com/bugsnag/bugsnag-android/pull/245) +* Add a callback for filtering breadcrumbs [#237](https://github.com/bugsnag/bugsnag-android/pull/237) + + ## 4.3.1 (2018-01-26) ### Bug fixes diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 55033d0684..f885c5cbd5 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -49,7 +49,7 @@ Running the test suite requires a connected android device or emulator. You can run the test suite on a device/emulator as follows from within the sdk directory: ```shell -../gradlew connectedCheck +./gradlew connectedCheck ``` Running Lint diff --git a/gradle.properties b/gradle.properties index 146dff872d..ca5346cce4 100644 --- a/gradle.properties +++ b/gradle.properties @@ -11,7 +11,7 @@ org.gradle.jvmargs=-Xmx1536m # This option should only be used with decoupled projects. More details, visit # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects # org.gradle.parallel=true -VERSION_NAME=4.3.1 +VERSION_NAME=4.3.2 GROUP=com.bugsnag POM_SCM_URL=https://github.com/bugsnag/bugsnag-android POM_SCM_CONNECTION=scm:git@github.com:bugsnag/bugsnag-android.git diff --git a/sdk/src/main/java/com/bugsnag/android/Notifier.java b/sdk/src/main/java/com/bugsnag/android/Notifier.java index 7a4051a9f0..f58c841380 100644 --- a/sdk/src/main/java/com/bugsnag/android/Notifier.java +++ b/sdk/src/main/java/com/bugsnag/android/Notifier.java @@ -9,7 +9,7 @@ */ public class Notifier implements JsonStream.Streamable { static final String NOTIFIER_NAME = "Android Bugsnag Notifier"; - static final String NOTIFIER_VERSION = "4.3.1"; + static final String NOTIFIER_VERSION = "4.3.2"; static final String NOTIFIER_URL = "https://bugsnag.com"; private String name; private String version;