chore(release): prepare v0.7.0 — changelog, version bump, docs#346
Merged
Conversation
Consolidates the [Unreleased] entries accumulated since v0.6.2 into a
versioned [0.7.0] release section and updates related documentation.
- Cargo.toml / Cargo.lock: 0.6.2 -> 0.7.0 (minor bump: new caller-context
feature + deny_unknown_fields is a breaking-minor change for configs
that previously relied on silently-ignored typos).
- CHANGELOG.md: reorganized into Highlights + Added/Changed/Fixed with
the v0.7.0 - 2026-07-16 header; fresh empty [Unreleased] on top.
- docs/changelog.md: matching concise release notes.
- docs/configuration.md:
- new "Cross-File Review Context" section documenting context_chain
(enabled, max_context_tokens=5000, follow_depth, include_tests,
include_callers) + outbound/inbound axes + signature fallback.
- "Config Resolution Order": note that values are validated at load
and typos rejected via deny_unknown_fields.
- Quality Gate: note CategoryAction is a case-insensitive validated
enum and a disabled gate never fails.
No behavior change (docs + version only). All 659 tests pass; clippy +
fmt clean.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Release preparation for v0.7.0 — consolidates the
[Unreleased]entries accumulated since v0.6.2 into a versioned release section and updates the related documentation. No behavior change (docs + version only).Why 0.7.0 (minor)
Since v0.6.2 the release adds a new feature (inbound caller / blast-radius context resolution) and
deny_unknown_fieldsis a breaking-minor change for configs that previously relied on silently-ignored typos. Semver minor →0.7.0.Changes
Cargo.toml/Cargo.lock:0.6.2→0.7.0.CHANGELOG.md: reorganized into Highlights + Added / Changed / Fixed under a## [0.7.0] - 2026-07-16header, with a fresh empty[Unreleased]on top.docs/changelog.md: matching concise release notes.docs/configuration.md:review.context_chain(enabled,max_context_tokens=5000,follow_depth,include_tests,include_callers), the outbound/inbound axes, and the signature-only budget fallback.deny_unknown_fields.CategoryActionis a case-insensitive validated enum and a disabled gate never fails.Validation
This PR lands the prep on
develop. The actual release still requires adevelop → mainPR +v0.7.0tag on main (which triggers the publish workflow) — to be done separately with explicit go-ahead.