diff --git a/CHANGELOG.md b/CHANGELOG.md index b02a3909e..3786b9f66 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## 0.6.7 **Fixes**: diff --git a/include/sentry.h b/include/sentry.h index 6c6d0bfe3..fe9918488 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.6" +#define SENTRY_SDK_VERSION "0.6.7" #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 b52dbd9d4..08f2936ab 100644 --- a/tests/assertions.py +++ b/tests/assertions.py @@ -58,9 +58,9 @@ def assert_meta( } expected_sdk = { "name": "sentry.native", - "version": "0.6.6", + "version": "0.6.7", "packages": [ - {"name": "github:getsentry/sentry-native", "version": "0.6.6"}, + {"name": "github:getsentry/sentry-native", "version": "0.6.7"}, ], } if is_android: diff --git a/tests/test_integration_http.py b/tests/test_integration_http.py index 99349ff52..fe3740a6c 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.6" + "Sentry sentry_key=uiaeosnrtdy, sentry_version=7, sentry_client=sentry.native/0.6.7" )