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

## [Unreleased]

## [0.2.2] - 2026-07-17

Accuracy + reliability patch from a full library review: five silent
false-negative classes closed, two false-positive classes stopped, and
the `[rag]` semantic layer works for the first time (its adapter read a
field attune-rag never had and crashed on every call).

### Fixed

- **rag adapter no longer crashes on every call.** It read
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "attune-verify"
version = "0.2.1"
version = "0.2.2"
description = "Generation fact-checker for the attune-* family. Verifies named entities in LLM output actually exist — imports import, CLI flags are real, links resolve, counts match source."
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.10"
Expand Down
2 changes: 1 addition & 1 deletion src/attune_verify/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
raise_if_failed,
)

__version__ = "0.2.1"
__version__ = "0.2.2"
__all__ = [
"verify",
"VerifyContext",
Expand Down
Loading