From 7cc32e2f615014f55156162168c22a743f92683a Mon Sep 17 00:00:00 2001 From: sebastianMindee Date: Thu, 27 Mar 2025 10:27:44 +0100 Subject: [PATCH] :bookmark: Version 4.19.0 --- CHANGELOG.md | 17 +++++++++++++++++ mindee/versions.py | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e62c2078..648262e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Mindee Python API Library Changelog +## v4.19.0 - 2025-03-27 +### Changes +* :sparkles: update structure for InvoiceSplitterV1 +* :sparkles: update FR EnegryBillV1 to V1.2 +* :sparkles: update US HealthcareCardV1 to V1.1 +* :coffin: remove support for EU Driver License +* :coffin: remove support for PetrolReceiptV1 +* :coffin: remove support for ReceiptV4 +* :coffin: remove support for Proof of Address +* :coffin: remove support for US Driver License +* :coffin: remove support for US W9V1 +### Fixes +* :bug: fix polling waiting for a full timeout in case of parsing failure +* :recycle: add missing imports for some products +* :arrow_down: downgrade pypdfium dependency due to very rare errors in local character extraction + + ## v4.18.0 - 2025-02-21 ### Changes * :sparkles: add support for image and pdf compression diff --git a/mindee/versions.py b/mindee/versions.py index fac8be56..8c053b1c 100644 --- a/mindee/versions.py +++ b/mindee/versions.py @@ -1,6 +1,6 @@ import sys -__version__ = "4.18.0" +__version__ = "4.19.0" PYTHON_VERSION = f"{sys.version_info[0]}.{sys.version_info[1]}"