diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b25a08f23..70a7c9366d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## TBD +## 5.0.2 (2020-08-17) ### Bug fixes @@ -8,6 +8,18 @@ The following alterations have been made to support the React Native notifier: +* Split updateMetadata method into two separate add/clear methods + [#918](/~https://github.com/bugsnag/bugsnag-android/pull/918) + +* Refactor event deserialiser to ensure unhandled value is retained + [#917](/~https://github.com/bugsnag/bugsnag-android/pull/917) + +* Retain unhandled value when parsing a JS event + [#914](/~https://github.com/bugsnag/bugsnag-android/pull/914) + +* Prevent duplicate notifier dependencies being added + [#911](/~https://github.com/bugsnag/bugsnag-android/pull/911) + * Attempt delivery of promise rejections immediately [#912](/~https://github.com/bugsnag/bugsnag-android/pull/912) diff --git a/bugsnag-android-core/src/main/java/com/bugsnag/android/Notifier.kt b/bugsnag-android-core/src/main/java/com/bugsnag/android/Notifier.kt index fd510c8532..fc4f103c27 100644 --- a/bugsnag-android-core/src/main/java/com/bugsnag/android/Notifier.kt +++ b/bugsnag-android-core/src/main/java/com/bugsnag/android/Notifier.kt @@ -7,7 +7,7 @@ import java.io.IOException */ class Notifier @JvmOverloads constructor( var name: String = "Android Bugsnag Notifier", - var version: String = "5.0.1", + var version: String = "5.0.2", var url: String = "https://bugsnag.com" ) : JsonStream.Streamable { diff --git a/gradle.properties b/gradle.properties index f53d0ae33f..57cfa616f0 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=5.0.1 +VERSION_NAME=5.0.2 GROUP=com.bugsnag POM_SCM_URL=/~https://github.com/bugsnag/bugsnag-android POM_SCM_CONNECTION=scm:git@github.com:bugsnag/bugsnag-android.git