Skip to content

Commit

Permalink
release: 0.7.9
Browse files Browse the repository at this point in the history
  • Loading branch information
getsentry-bot committed Aug 28, 2024
1 parent 58c3286 commit 2a88542
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Changelog

## Unreleased
## 0.7.9

**Fixes**:

- Check file-writer construction when writing envelope to path. ([#1036](https://github.com/getsentry/sentry-native/pull/1036))

## 0.7.8

**Features**:
Expand Down
2 changes: 1 addition & 1 deletion include/sentry.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ extern "C" {
# define SENTRY_SDK_NAME "sentry.native"
# endif
#endif
#define SENTRY_SDK_VERSION "0.7.8"
#define SENTRY_SDK_VERSION "0.7.9"
#define SENTRY_SDK_USER_AGENT SENTRY_SDK_NAME "/" SENTRY_SDK_VERSION

/* common platform detection */
Expand Down
2 changes: 1 addition & 1 deletion ndk/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ android.useAndroidX=true
android.defaults.buildfeatures.buildconfig=true

# Release information, used for maven publishing
versionName=0.7.8
versionName=0.7.9

# disable renderscript, it's enabled by default
android.defaults.buildfeatures.renderscript=false
Expand Down
4 changes: 2 additions & 2 deletions tests/assertions.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,9 @@ def assert_event_meta(
}
expected_sdk = {
"name": "sentry.native",
"version": "0.7.8",
"version": "0.7.9",
"packages": [
{"name": "github:getsentry/sentry-native", "version": "0.7.8"},
{"name": "github:getsentry/sentry-native", "version": "0.7.9"},
],
}
if is_android:
Expand Down
2 changes: 1 addition & 1 deletion tests/test_integration_http.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,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.7.8"
"Sentry sentry_key=uiaeosnrtdy, sentry_version=7, sentry_client=sentry.native/0.7.9"
)


Expand Down

0 comments on commit 2a88542

Please sign in to comment.