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
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog

## Unreleased
## v0.1.6 | Length Position Coverage

Maintenance release that broadens public length-changing alignment evidence
across match positions and makes bbox assertion diagnostics easier to inspect
without exposing decoded document text.

### Added

Expand Down
2 changes: 1 addition & 1 deletion pdf_fixture.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from pathlib import Path


__version__ = "0.1.5"
__version__ = "0.1.6"

DEFAULT_CIDS: dict[str, str] = {
" ": "0003",
Expand Down
2 changes: 1 addition & 1 deletion pdf_mutation/engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
)


__version__ = "0.1.5"
__version__ = "0.1.6"

BT_ET_RE = re.compile(rb"BT\n(.*?)\nET", re.S)
FONT_SET_RE = re.compile(rb"/(F[^\s/<>\[\]()]+)\s+[-+.0-9]+\s+Tf")
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 = "pdf-mutation"
version = "0.1.5"
version = "0.1.6"
description = "Deterministic glyph-preserving PDF text replacement CLI"
readme = "README.md"
requires-python = ">=3.11"
Expand Down