Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v5.21.0 #1629

Merged
merged 1 commit into from
Mar 17, 2022
Merged

v5.21.0 #1629

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Changelog

## TBD
## 5.21.0 (2022-03-17)

### Bug fixes

* Fixed an issue where an uncaught exeption on the main thread could in rare cases trigger an ANR.
* Fixed an issue where an uncaught exception on the main thread could in rare cases trigger an ANR.
[#1624](https://github.com/bugsnag/bugsnag-android/pull/1624)

* Fix inconsistencies in stack trace quality for C/C++ events. Resolves a few
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import java.io.IOException
*/
class Notifier @JvmOverloads constructor(
var name: String = "Android Bugsnag Notifier",
var version: String = "5.20.0",
var version: String = "5.21.0",
var url: String = "https://bugsnag.com"
) : JsonStream.Streamable {

Expand Down
2 changes: 1 addition & 1 deletion examples/sdk-app-example/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ android {
}

dependencies {
implementation "com.bugsnag:bugsnag-android:5.17.0"
implementation "com.bugsnag:bugsnag-android:5.20.0"
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation "androidx.appcompat:appcompat:1.4.0"
implementation "com.google.android.material:material:1.4.0"
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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.20.0
VERSION_NAME=5.21.0
GROUP=com.bugsnag
POM_SCM_URL=https://github.com/bugsnag/bugsnag-android
POM_SCM_CONNECTION=scm:[email protected]:bugsnag/bugsnag-android.git
Expand Down