From 0e95ab3b9bc4546343ec7f8cc4184048c7da124d Mon Sep 17 00:00:00 2001 From: fractalwrench Date: Thu, 18 Jan 2018 11:27:25 +0000 Subject: [PATCH] v4.3.0 --- CHANGELOG.md | 9 ++++++++- gradle.properties | 2 +- sdk/src/main/java/com/bugsnag/android/Notifier.java | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e02979953..2646453ab1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,17 @@ # Changelog +## 4.3.0 (2018-01-18) + +- Move capture of thread stacktraces to start of notify process +- Add configuration option to disable automatic breadcrumb capture +- Update Gradle Wrapper +- Parse manifest meta-data for Session Auto-Capture boolean flag + ## 4.2.2 (2018-01-09) ### Bug fixes -* Fix possible crash during session tracking initialization +- Fix possible crash during session tracking initialization [#220](https://github.com/bugsnag/bugsnag-android/pull/220) [James Smith](https://github.com/loopj) diff --git a/gradle.properties b/gradle.properties index a690b726a6..7bfc234a3f 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.2.2 +VERSION_NAME=4.3.0 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 955fc36722..e73f9417b4 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.2.2"; + static final String NOTIFIER_VERSION = "4.3.0"; static final String NOTIFIER_URL = "https://bugsnag.com"; private String name; private String version;