From 62b966c487f08773dc23cfb17b991bdd3f170ae4 Mon Sep 17 00:00:00 2001 From: getsentry-bot Date: Mon, 20 Jan 2025 12:43:38 +0000 Subject: [PATCH] release: 0.7.19 --- CHANGELOG.md | 2 +- include/sentry.h | 2 +- ndk/gradle.properties | 2 +- tests/assertions.py | 4 ++-- tests/test_integration_http.py | 2 +- tests/win_utils.py | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 94aa6d919..83687f572 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## 0.7.19 **Fixes**: diff --git a/include/sentry.h b/include/sentry.h index 73a367b26..baac5df8b 100644 --- a/include/sentry.h +++ b/include/sentry.h @@ -30,7 +30,7 @@ extern "C" { # define SENTRY_SDK_NAME "sentry.native" # endif #endif -#define SENTRY_SDK_VERSION "0.7.18" +#define SENTRY_SDK_VERSION "0.7.19" #define SENTRY_SDK_USER_AGENT SENTRY_SDK_NAME "/" SENTRY_SDK_VERSION /* common platform detection */ diff --git a/ndk/gradle.properties b/ndk/gradle.properties index 7daa90b4a..7d65b6757 100644 --- a/ndk/gradle.properties +++ b/ndk/gradle.properties @@ -10,7 +10,7 @@ android.useAndroidX=true android.defaults.buildfeatures.buildconfig=true # Release information, used for maven publishing -versionName=0.7.18 +versionName=0.7.19 # disable renderscript, it's enabled by default android.defaults.buildfeatures.renderscript=false diff --git a/tests/assertions.py b/tests/assertions.py index eca32ec55..8d640d372 100644 --- a/tests/assertions.py +++ b/tests/assertions.py @@ -90,9 +90,9 @@ def assert_event_meta( } expected_sdk = { "name": "sentry.native", - "version": "0.7.18", + "version": "0.7.19", "packages": [ - {"name": "github:getsentry/sentry-native", "version": "0.7.18"}, + {"name": "github:getsentry/sentry-native", "version": "0.7.19"}, ], } if is_android: diff --git a/tests/test_integration_http.py b/tests/test_integration_http.py index 58af7a839..a89a102f6 100644 --- a/tests/test_integration_http.py +++ b/tests/test_integration_http.py @@ -31,7 +31,7 @@ # fmt: off auth_header = ( - "Sentry sentry_key=uiaeosnrtdy, sentry_version=7, sentry_client=sentry.native/0.7.18" + "Sentry sentry_key=uiaeosnrtdy, sentry_version=7, sentry_client=sentry.native/0.7.19" ) # fmt: on diff --git a/tests/win_utils.py b/tests/win_utils.py index d3d2528a8..f0a28033c 100644 --- a/tests/win_utils.py +++ b/tests/win_utils.py @@ -1,7 +1,7 @@ import pathlib import win32api -sentry_version = "0.7.18" +sentry_version = "0.7.19" def check_binary_version(binary_path: pathlib.Path):