From 5b4372c4c84003f623ec8aa1b916671ae4103bc4 Mon Sep 17 00:00:00 2001 From: James Smith Date: Mon, 22 Dec 2014 10:36:24 -0800 Subject: [PATCH] v3.1.1 --- CHANGELOG | 4 ++++ gradle.properties | 2 +- src/main/java/com/bugsnag/android/Notifier.java | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 11939607ed..65c41c3cda 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +3.1.1 +----- +- Re-add `Error#getException` to allow access to exception in callbacks + 3.1.0 ----- - Add support for leaving developer-defined log messages called "breadcrumbs" diff --git a/gradle.properties b/gradle.properties index 29743eaa16..fb1287fdeb 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -VERSION_NAME=3.1.0 +VERSION_NAME=3.1.1 GROUP=com.bugsnag POM_SCM_URL=https://github.com/bugsnag/bugsnag-android diff --git a/src/main/java/com/bugsnag/android/Notifier.java b/src/main/java/com/bugsnag/android/Notifier.java index 36982ce0a4..825ef5996b 100644 --- a/src/main/java/com/bugsnag/android/Notifier.java +++ b/src/main/java/com/bugsnag/android/Notifier.java @@ -5,7 +5,7 @@ */ class Notifier implements JsonStream.Streamable { static final String NOTIFIER_NAME = "Android Bugsnag Notifier"; - static final String NOTIFIER_VERSION = "3.1.0"; + static final String NOTIFIER_VERSION = "3.1.1"; static final String NOTIFIER_URL = "https://bugsnag.com"; private static Notifier instance = new Notifier();