diff --git a/CHANGELOG.md b/CHANGELOG.md index bf4677bed5..c7f3655122 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 5.20.0 (2022-03-10) + +### Enhancements + +* The number of threads reported can now be limited using `Configuration.setMaxReportedThreads` (defaulting to 200) + [#1607](https://github.com/bugsnag/bugsnag-android/pull/1607) + ## 5.19.2 (2022-01-31) ### Bug fixes 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 b2f08dbab0..7851ffb4c3 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.19.2", + var version: String = "5.20.0", var url: String = "https://bugsnag.com" ) : JsonStream.Streamable { diff --git a/gradle.properties b/gradle.properties index 14d8c10d1d..13efc4cbdf 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=5.19.2 +VERSION_NAME=5.20.0 GROUP=com.bugsnag POM_SCM_URL=https://github.com/bugsnag/bugsnag-android POM_SCM_CONNECTION=scm:git@github.com:bugsnag/bugsnag-android.git