Skip to content
Open
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
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.7.0](https://github.com/cq27-dev/rag-rat/compare/rag-rat-core-v0.6.0...rag-rat-core-v0.7.0) - 2026-06-15

### Added

- *(oracle)* unified tier-driven corpus runner + oracle.yml (C3) ([#177](https://github.com/cq27-dev/rag-rat/pull/177))

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Include the latest merged feature in 0.7.0 notes

This release commit is based on 8b6adfe, whose direct history since the 0.6.0 release includes feat(oracle): Markdown resolution report — job summary + fork-safe PR comment (C5) (#178), but the newly added 0.7.0 changelog starts at #177 and never mentions #178. Users reading the 0.7.0 notes will miss a shipped feature unless the release PR is regenerated or this section is updated before publishing.

Useful? React with 👍 / 👎.

- *(oracle)* scip-python backend — Python compiler-grade resolution (B6) ([#176](https://github.com/cq27-dev/rag-rat/pull/176))
- *(oracle)* `oracle report --corpus <id>` — run a corpus + emit its C2 resolution report (C2-CLI) ([#175](https://github.com/cq27-dev/rag-rat/pull/175))
- *(lang)* Python language support (symbols, graph edges, embeddings) + AST low-signal ([#167](https://github.com/cq27-dev/rag-rat/pull/167))
- *(oracle)* corpus profiles + health-gate loader (C1) ([#171](https://github.com/cq27-dev/rag-rat/pull/171))
- *(oracle)* live before/after resolution report computation (C2 core) ([#168](https://github.com/cq27-dev/rag-rat/pull/168))
- *(oracle)* resolution-report + corpus-profile schema contract (C0) ([#166](https://github.com/cq27-dev/rag-rat/pull/166))
- *(eval)* gate eval behind a non-default feature + add CI eval job ([#162](https://github.com/cq27-dev/rag-rat/pull/162))
- *(mcp)* nudge the agent to re-anchor stale memories via tool-result content ([#160](https://github.com/cq27-dev/rag-rat/pull/160))

## [0.6.0](https://github.com/cq27-dev/rag-rat/compare/rag-rat-core-v0.5.0...rag-rat-core-v0.6.0) - 2026-06-15

### Added
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ resolver = "3"
# and the internal path deps below pin the same literal, so the three crates always publish in
# lockstep. Bump this one line (and the two internal-dep `version`s under workspace.dependencies)
# to release.
version = "0.6.0"
version = "0.7.0"
authors = ["Kristaps Karlsons"]
edition = "2024"
rust-version = "1.89"
Expand All @@ -25,8 +25,8 @@ categories = ["command-line-utilities", "development-tools"]
# Internal crates — declared once here so the version requirement is set in lockstep with
# [workspace.package].version above. Members reference these via `{ workspace = true }` and add
# their own feature toggles at the use site.
rag-rat-core = { version = "0.6.0", path = "crates/rag-rat-core", default-features = false }
rag-rat-mcp = { version = "0.6.0", path = "crates/rag-rat-mcp", default-features = false }
rag-rat-core = { version = "0.7.0", path = "crates/rag-rat-core", default-features = false }
rag-rat-mcp = { version = "0.7.0", path = "crates/rag-rat-mcp", default-features = false }
anyhow = "1.0"
fastembed = { version = "5.1.0", default-features = false, features = ["hf-hub-rustls-tls", "ort-download-binaries-rustls-tls"] }
gix = { version = "0.84.0", default-features = false, features = ["status", "parallel", "sha1"] }
Expand Down
Loading