Skip to content
Merged
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@
- Bump Cocoa SDK from v8.56.2 to v8.57.0 ([#419](https://github.com/getsentry/sentry-godot/pull/419))
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8570)
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.56.2...8.57.0)
- Bump Sentry Android from v8.23.0 to v8.24.0 ([#424](https://github.com/getsentry/sentry-godot/pull/424))
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#8240)
- [diff](https://github.com/getsentry/sentry-java/compare/8.23.0...8.24.0)

## 1.0.0

Expand Down
2 changes: 1 addition & 1 deletion android_lib/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ dependencies {
testImplementation("junit:junit:4.13.2")

// NOTE: All dependencies below must be also updated in sentry_editor_export_plugin.cpp.
implementation("io.sentry:sentry-android:8.23.0")
implementation("io.sentry:sentry-android:8.24.0")
}

val copyDebugAarToProject by tasks.registering(Copy::class) {
Expand Down
2 changes: 1 addition & 1 deletion src/editor/sentry_editor_export_plugin_android.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ PackedStringArray SentryEditorExportPluginAndroid::_get_android_libraries(const
PackedStringArray SentryEditorExportPluginAndroid::_get_android_dependencies(const Ref<EditorExportPlatform> &p_platform, bool p_debug) const {
PackedStringArray deps;
// NOTE: All dependencies below must be also updated in build.gradle.kts.
deps.append("io.sentry:sentry-android:8.23.0");
deps.append("io.sentry:sentry-android:8.24.0");
return deps;
}

Expand Down
Loading