Skip to content

Commit

Permalink
release/v5.32.3
Browse files Browse the repository at this point in the history
  • Loading branch information
YYChen01988 committed Jun 27, 2024
1 parent 4d27e08 commit 431f8f7
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: 11
java-version: 17

- name: Gradle cache
uses: gradle/gradle-build-action@v2
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 5.32.3 (2024-06-27)

### Bug fixes

* Prevent rare secondary crashes that could occur when certain APIs were in-use during a native crash
[#2046](https://github.com/bugsnag/bugsnag-android/pull/2046)

## 5.32.2 (2024-02-12)

### Bug fixes
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.32.2",
var version: String = "5.32.3",
var url: String = "https://bugsnag.com"
) : JsonStream.Streamable {

Expand Down
4 changes: 2 additions & 2 deletions examples/sdk-app-example/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ android {
}

dependencies {
implementation "com.bugsnag:bugsnag-android:5.32.2"
implementation "com.bugsnag:bugsnag-plugin-android-okhttp:5.32.2"
implementation "com.bugsnag:bugsnag-android:5.32.3"
implementation "com.bugsnag:bugsnag-plugin-android-okhttp:5.32.3"
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.32.2
VERSION_NAME=5.32.3
GROUP=com.bugsnag
POM_SCM_URL=https://github.com/bugsnag/bugsnag-android
POM_SCM_CONNECTION=scm:git@github.com:bugsnag/bugsnag-android.git
Expand Down

0 comments on commit 431f8f7

Please sign in to comment.