From 22b9b937272952be0e344c0d6c442878982e8caa Mon Sep 17 00:00:00 2001 From: getsentry-bot Date: Mon, 13 Feb 2023 17:21:14 +0000 Subject: [PATCH] release: 0.6.0 --- CHANGELOG.md | 2 +- include/sentry.h | 2 +- tests/assertions.py | 4 ++-- tests/test_integration_http.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e16043551..a1cde9759 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## 0.6.0 **Breaking changes**: diff --git a/include/sentry.h b/include/sentry.h index 41e86fac5..b5381642d 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.5.4" +#define SENTRY_SDK_VERSION "0.6.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 9ecc88fd2..934858cea 100644 --- a/tests/assertions.py +++ b/tests/assertions.py @@ -55,9 +55,9 @@ def assert_meta( } expected_sdk = { "name": "sentry.native", - "version": "0.5.4", + "version": "0.6.0", "packages": [ - {"name": "github:getsentry/sentry-native", "version": "0.5.4"}, + {"name": "github:getsentry/sentry-native", "version": "0.6.0"}, ], } if is_android: diff --git a/tests/test_integration_http.py b/tests/test_integration_http.py index ebf69be4f..b1a3f2210 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.5.4" + "Sentry sentry_key=uiaeosnrtdy, sentry_version=7, sentry_client=sentry.native/0.6.0" )