diff --git a/CHANGELOG.md b/CHANGELOG.md index 42901e967d..83e0cf2fd5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 6.6.1 (2024-07-03) + +### Bug fixes + +* Allow ReactNative applications to set the `correlation` property on Events + [#2050](https://github.com/bugsnag/bugsnag-android/pull/2050) +* Avoid possible crashes in apps the use custom proguard rules that don't include protection for `Enum.values()` + [#2049](https://github.com/bugsnag/bugsnag-android/pull/2049) + ## 6.6.0 (2024-06-19) ### Enhancements 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 f89f73b880..d2da04b9ed 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 = "6.6.0", + var version: String = "6.6.1", var url: String = "https://bugsnag.com" ) : JsonStream.Streamable { diff --git a/examples/sdk-app-example/app/build.gradle b/examples/sdk-app-example/app/build.gradle index 5def256fa5..8db9eba255 100644 --- a/examples/sdk-app-example/app/build.gradle +++ b/examples/sdk-app-example/app/build.gradle @@ -42,8 +42,8 @@ android { } dependencies { - implementation "com.bugsnag:bugsnag-android:6.6.0" - implementation "com.bugsnag:bugsnag-plugin-android-okhttp:6.6.0" + implementation "com.bugsnag:bugsnag-android:6.6.1" + implementation "com.bugsnag:bugsnag-plugin-android-okhttp:6.6.1" implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" implementation "androidx.appcompat:appcompat:1.6.1" implementation "com.google.android.material:material:1.11.0" diff --git a/gradle.properties b/gradle.properties index a3007565d8..4581a3adf9 100644 --- a/gradle.properties +++ b/gradle.properties @@ -11,7 +11,7 @@ org.gradle.jvmargs=-Xmx4096m # 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=6.6.0 +VERSION_NAME=6.6.1 GROUP=com.bugsnag POM_SCM_URL=https://github.com/bugsnag/bugsnag-android POM_SCM_CONNECTION=scm:git@github.com:bugsnag/bugsnag-android.git