Skip to content

Commit

Permalink
feat: extend API with ptr/len-string interfaces (#827)
Browse files Browse the repository at this point in the history
  • Loading branch information
supervacuus authored Apr 25, 2023
1 parent 1788653 commit e97930a
Show file tree
Hide file tree
Showing 36 changed files with 1,529 additions and 164 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: make style
- run: |
sudo apt update
sudo apt install clang-format-15
make style-15
build-ios:
name: Xcode Build for iOS
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## Unreleased

**Features**:

- Extend API with ptr/len-string interfaces. ([#827](https://github.com/getsentry/sentry-native/pull/827))

## 0.6.1

**Fixes**:
Expand Down
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -83,3 +83,9 @@ style: setup-venv
@.venv/bin/python ./scripts/check-clang-format.py -r examples include src tests/unit
@.venv/bin/black --diff --check tests
.PHONY: style

# TODO: workaround for clang-format 15+ where local formatting breaks with clang-format-14 based style checks on CI
style-15: setup-venv
@.venv/bin/python ./scripts/check-clang-format.py --clang-format-executable /usr/bin/clang-format-15 -r examples include src tests/unit
@.venv/bin/black --diff --check tests
.PHONY: style-15
Loading

0 comments on commit e97930a

Please sign in to comment.