Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,11 @@ jobs:
- name: Upload to codecov.io
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
# Dependabot and fork PRs don't have access to CODECOV_TOKEN
# (secrets are withheld from untrusted contexts), so codecov
# can't create a commit on the protected branch and the upload
# errors. Only treat that error as fatal for trusted PRs and
# pushes to main, where the token is available.
fail_ci_if_error: ${{ !(github.event.pull_request.head.repo.fork == true || github.actor == 'dependabot[bot]') }}
token: ${{ secrets.CODECOV_TOKEN }}
env_vars: OS,RUST
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## [0.8.0] 2026-07-26

### Deprecated

- Deprecated `ResolveError` name.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ license = "MIT OR Apache-2.0"
name = "jsonptr"
repository = "https://github.com/chanced/jsonptr"
rust-version = "1.79.0"
version = "0.7.1"
version = "0.8.0"

[dependencies]
miette = { version = "7.4.0", optional = true, features = ["fancy"] }
Expand Down
Loading