From 78ffd9181a7620a957a2b96167de984c171512b3 Mon Sep 17 00:00:00 2001 From: sebastianMindee <130448732+sebastianMindee@users.noreply.github.com> Date: Mon, 20 Jul 2026 17:20:30 +0200 Subject: [PATCH] :bookmark: Version 5.2.0 --- CHANGELOG.md | 13 +++++++++++++ mindee/versions.py | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 17042779..e431edb4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Mindee Python Client Library Changelog +## v5.2.0 - 2026-07-20 +### Changes +* :sparkles: add webhook error response +* :sparkles: add simple fields typed accessors +* :sparkles: allow passing a webhook to the CLI +* :recycle: update internals and bump dependencies + +### Fixes +* :bug: :boom: rework extraction methods +* :bug: :boom: harmonize Crop and Split +* :bug: fix issues with tests and add better tests for URL input source + + ## v5.1.1 - 2026-06-19 ### Fixes * :bug: fix building docs diff --git a/mindee/versions.py b/mindee/versions.py index c0a0a89e..ef29a698 100644 --- a/mindee/versions.py +++ b/mindee/versions.py @@ -1,6 +1,6 @@ import sys -__version__ = "5.1.1" +__version__ = "5.2.0" PYTHON_VERSION = f"{sys.version_info[0]}.{sys.version_info[1]}"