From ac2a1dbc56605e84ce9cd3f37cf06dbc3d5b0715 Mon Sep 17 00:00:00 2001 From: Delisa Mason Date: Tue, 3 Apr 2018 14:50:03 -0700 Subject: [PATCH] Release v4.3.3 --- CHANGELOG.md | 9 +++++++++ gradle.properties | 2 +- sdk/src/main/java/com/bugsnag/android/Notifier.java | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8336437fed..70a1a51d14 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 4.3.3 (2018-04-04) + +### Bug fixes + +* Prevent duplicate reports being delivered in low connectivity situations + [#270](https://github.com/bugsnag/bugsnag-android/pull/270) +* Fix possible NPE when reading default metadata filters + [#263](https://github.com/bugsnag/bugsnag-android/pull/263) + ## 4.3.2 (2018-03-09) ### Bug fixes diff --git a/gradle.properties b/gradle.properties index fd51f85366..df80939f92 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.2 +VERSION_NAME=4.3.3 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 f58c841380..f31616b938 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.2"; + static final String NOTIFIER_VERSION = "4.3.3"; static final String NOTIFIER_URL = "https://bugsnag.com"; private String name; private String version;