diff --git a/CHANGELOG.md b/CHANGELOG.md index 3bf733dd40..f8b775e7d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 4.1.3 (2017-11-07) +- Compile annotations dependency as api rather than implementation +- Support handled state case for React Native + ## 4.1.2 (2017-11-02) - Allow setting device ID to null diff --git a/gradle.properties b/gradle.properties index 9f58ff4c08..3213fff02d 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.1.2 +VERSION_NAME=4.1.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 6d431c9a84..c664bad9f2 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.1.2"; + static final String NOTIFIER_VERSION = "4.1.3"; static final String NOTIFIER_URL = "https://bugsnag.com"; private String name; private String version;