From d4d7db7fbe42e934adfbdef46c91497474a2052e Mon Sep 17 00:00:00 2001 From: nathan nelson Date: Sat, 18 Jul 2026 21:54:29 -0600 Subject: [PATCH] Fix version and test-count inconsistencies - __init__.py: bump stale __version__ 0.1.2 -> 0.1.4 to match pyproject.toml - README: reconcile Trust-status banner "249 tests" -> "243 tests" to match the two body references and the actual offline gate count (243 passed, 6 live tests deselected; 243 + 6 = 249 was counting the deselected). Co-Authored-By: Claude Opus 4.8 (1M context) --- README.md | 2 +- src/tearsheet/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a441779..eda1e5c 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ no telemetry. > *tearsheet (n.): a page torn from a publication and filed as proof it ran.* -**Trust status:** qualified for heavy usage 2026-07-16 — 249 tests, a falsifiable live +**Trust status:** qualified for heavy usage 2026-07-16 — 243 tests, a falsifiable live eval harness (verdict GREEN), and zero fabrications across the tool's entire recorded history. Its documented failure mode is *omission*, and the guards exist to make every omission loud. See [Trust](#trust). diff --git a/src/tearsheet/__init__.py b/src/tearsheet/__init__.py index 35d92c9..2711ed6 100644 --- a/src/tearsheet/__init__.py +++ b/src/tearsheet/__init__.py @@ -7,6 +7,6 @@ from tearsheet.mapper import map_site from tearsheet.structured import extract_page, extract_structured -__version__ = "0.1.2" +__version__ = "0.1.4" __all__ = ["__version__", "extract_page", "extract_structured", "map_site"]