diff --git a/CHANGELOG.md b/CHANGELOG.md index fe2a44b61..dcaaf1ebf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## 0.7.0 **Breaking changes**: diff --git a/include/sentry.h b/include/sentry.h index f52f5ae56..bba0dd0e7 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.7" +#define SENTRY_SDK_VERSION "0.7.0" #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 08f2936ab..f12ec9972 100644 --- a/tests/assertions.py +++ b/tests/assertions.py @@ -58,9 +58,9 @@ def assert_meta( } expected_sdk = { "name": "sentry.native", - "version": "0.6.7", + "version": "0.7.0", "packages": [ - {"name": "github:getsentry/sentry-native", "version": "0.6.7"}, + {"name": "github:getsentry/sentry-native", "version": "0.7.0"}, ], } if is_android: diff --git a/tests/test_integration_http.py b/tests/test_integration_http.py index fe3740a6c..ee915f00e 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.7" + "Sentry sentry_key=uiaeosnrtdy, sentry_version=7, sentry_client=sentry.native/0.7.0" )