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]}"