Skip to content

Commit 7794285

Browse files
web-flowgithub-actions[bot]
authored andcommitted
chore: update scripts/android-version.ps1 to 8.18.0
1 parent 5a08490 commit 7794285

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@
1212
- Fix `release` option not honored if set to a custom value in the project settings, and fix parsing of `app_name`/`app_version` replacement tokens if set via a configuration script. ([#276](https://github.com/getsentry/sentry-godot/pull/276))
1313
- Remove `libatomic.so.1` dependency on Linux ([#278](https://github.com/getsentry/sentry-godot/pull/278))
1414

15+
### Dependencies
16+
17+
- Bump Sentry Android from v8.17.0 to v8.18.0 ([#282](https://github.com/getsentry/sentry-godot/pull/282))
18+
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#8180)
19+
- [diff](https://github.com/getsentry/sentry-java/compare/8.17.0...8.18.0)
20+
1521
## 1.0.0-alpha.2
1622

1723
### Features

android_lib/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ dependencies {
3838
testImplementation("junit:junit:4.13.2")
3939

4040
// NOTE: All dependencies below must be also updated in sentry_editor_export_plugin.cpp.
41-
implementation("io.sentry:sentry-android:8.17.0")
41+
implementation("io.sentry:sentry-android:8.18.0")
4242
}
4343

4444
val copyDebugAarToProject by tasks.registering(Copy::class) {

src/editor/sentry_editor_export_plugin_android.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ PackedStringArray SentryEditorExportPluginAndroid::_get_android_libraries(const
2222
PackedStringArray SentryEditorExportPluginAndroid::_get_android_dependencies(const Ref<EditorExportPlatform> &p_platform, bool p_debug) const {
2323
PackedStringArray deps;
2424
// NOTE: All dependencies below must be also updated in build.gradle.kts.
25-
deps.append("io.sentry:sentry-android:8.17.0");
25+
deps.append("io.sentry:sentry-android:8.18.0");
2626
return deps;
2727
}
2828

0 commit comments

Comments
 (0)