Skip to content

Commit

Permalink
Merge branch 'release/0.7.16'
Browse files Browse the repository at this point in the history
  • Loading branch information
getsentry-bot committed Dec 4, 2024
2 parents 8eb612e + 39445fe commit 055465f
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Unreleased
## 0.7.16

**Features**:
- Add SOCKS5 proxy support for macOS and Linux. ([#1063](https://github.com/getsentry/sentry-native/pull/1063))
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.15"
#define SENTRY_SDK_VERSION "0.7.16"
#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.15
versionName=0.7.16

# 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.15",
"version": "0.7.16",
"packages": [
{"name": "github:getsentry/sentry-native", "version": "0.7.15"},
{"name": "github:getsentry/sentry-native", "version": "0.7.16"},
],
}
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 @@ -31,7 +31,7 @@

# fmt: off
auth_header = (
"Sentry sentry_key=uiaeosnrtdy, sentry_version=7, sentry_client=sentry.native/0.7.15"
"Sentry sentry_key=uiaeosnrtdy, sentry_version=7, sentry_client=sentry.native/0.7.16"
)
# fmt: on

Expand Down
2 changes: 1 addition & 1 deletion tests/win_utils.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import pathlib
import win32api

sentry_version = "0.7.15"
sentry_version = "0.7.16"


def check_binary_version(binary_path: pathlib.Path):
Expand Down

0 comments on commit 055465f

Please sign in to comment.