From 7323fedbea0a5d7744f099daca4ba8a195340548 Mon Sep 17 00:00:00 2001 From: Eric W Cochran Date: Thu, 21 May 2026 11:07:41 -0500 Subject: [PATCH] Prepare v0.1.7 release --- CHANGELOG.md | 5 ++++- pdf_fixture.py | 2 +- pdf_mutation/engine.py | 2 +- pyproject.toml | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c7ba037..ad24879 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ # Changelog -## Unreleased +## v0.1.7 | Blocker Summary Reports + +Maintenance release that makes unsupported split-object and mixed-font cases +easier to triage from non-sensitive plan and audit JSON. ### Added diff --git a/pdf_fixture.py b/pdf_fixture.py index 86619e5..da1aacb 100644 --- a/pdf_fixture.py +++ b/pdf_fixture.py @@ -8,7 +8,7 @@ from pathlib import Path -__version__ = "0.1.6" +__version__ = "0.1.7" DEFAULT_CIDS: dict[str, str] = { " ": "0003", diff --git a/pdf_mutation/engine.py b/pdf_mutation/engine.py index 731ae1c..d568154 100644 --- a/pdf_mutation/engine.py +++ b/pdf_mutation/engine.py @@ -48,7 +48,7 @@ ) -__version__ = "0.1.6" +__version__ = "0.1.7" BT_ET_RE = re.compile(rb"BT\n(.*?)\nET", re.S) FONT_SET_RE = re.compile(rb"/(F[^\s/<>\[\]()]+)\s+[-+.0-9]+\s+Tf") diff --git a/pyproject.toml b/pyproject.toml index ffddfbd..f28b7a7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "pdf-mutation" -version = "0.1.6" +version = "0.1.7" description = "Deterministic glyph-preserving PDF text replacement CLI" readme = "README.md" requires-python = ">=3.11"