From 1d3319773a78651015f74a2fa8213f434ded4bf8 Mon Sep 17 00:00:00 2001 From: Patrick Date: Fri, 17 Jul 2026 20:29:43 -0400 Subject: [PATCH] release: 0.2.2 Promote [Unreleased] to [0.2.2] - 2026-07-17; bump pyproject and __init__ to 0.2.2. Co-Authored-By: Claude Fable 5 --- CHANGELOG.md | 7 +++++++ pyproject.toml | 2 +- src/attune_verify/__init__.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 914af80..c84beba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/pyproject.toml b/pyproject.toml index af5c447..26405c6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" diff --git a/src/attune_verify/__init__.py b/src/attune_verify/__init__.py index 270c97d..44297e2 100644 --- a/src/attune_verify/__init__.py +++ b/src/attune_verify/__init__.py @@ -23,7 +23,7 @@ raise_if_failed, ) -__version__ = "0.2.1" +__version__ = "0.2.2" __all__ = [ "verify", "VerifyContext",