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();