From acbc65f70296c74fdca665e3350ba69f21e2a21b Mon Sep 17 00:00:00 2001 From: David Huggins-Daines Date: Thu, 28 Nov 2024 17:07:48 -0500 Subject: [PATCH] chore: release 0.2.3 --- CHANGELOG.md | 7 +++++++ playa/__init__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0522d75f..bddc8d1e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## PLAYA 0.2.3: 2024-11-28: +- release early and often +- fix some embarrassing bugs, again: + - CMap parser did not recognize bfrange correctly (regression) + - corner cases of inline images caused endless woe + - documentation said document.structtree exists but nope it didn't + ## PLAYA 0.2.2: 2024-11-27 - make everything quite a lot faster (25-35% faster than pdfminer now) - fix some more pdfminer.six bugs and verify others already fixed diff --git a/playa/__init__.py b/playa/__init__.py index 055ba59a..5761c8bf 100644 --- a/playa/__init__.py +++ b/playa/__init__.py @@ -20,7 +20,7 @@ from playa.document import Document, LayoutDict, schema as schema # noqa: F401 from playa.page import DeviceSpace -__version__ = "0.2.2" +__version__ = "0.2.3" fieldnames = LayoutDict.__annotations__.keys()