diff --git a/CHANGELOG.md b/CHANGELOG.md index f2a7ffde7..ea9f639d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## 0.6.5 **Fixes**: diff --git a/include/sentry.h b/include/sentry.h index 61b363f18..180a22bc2 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.6.4" +#define SENTRY_SDK_VERSION "0.6.5" #define SENTRY_SDK_USER_AGENT SENTRY_SDK_NAME "/" SENTRY_SDK_VERSION /* common platform detection */ diff --git a/tests/assertions.py b/tests/assertions.py index 71a7ba48f..65bbd98b5 100644 --- a/tests/assertions.py +++ b/tests/assertions.py @@ -58,9 +58,9 @@ def assert_meta( } expected_sdk = { "name": "sentry.native", - "version": "0.6.4", + "version": "0.6.5", "packages": [ - {"name": "github:getsentry/sentry-native", "version": "0.6.4"}, + {"name": "github:getsentry/sentry-native", "version": "0.6.5"}, ], } if is_android: diff --git a/tests/test_integration_http.py b/tests/test_integration_http.py index c17439d75..bfc87552b 100644 --- a/tests/test_integration_http.py +++ b/tests/test_integration_http.py @@ -24,7 +24,7 @@ pytestmark = pytest.mark.skipif(not has_http, reason="tests need http") auth_header = ( - "Sentry sentry_key=uiaeosnrtdy, sentry_version=7, sentry_client=sentry.native/0.6.4" + "Sentry sentry_key=uiaeosnrtdy, sentry_version=7, sentry_client=sentry.native/0.6.5" )