diff --git a/CHANGELOG.md b/CHANGELOG.md index 9276bb74..c44c40eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Mindee Python Client Library Changelog +## v4.33.0 - 2026-02-11 +### Changes +* :sparkles: add support for V2 Split, Classification, Crop and OCR utilities +* :sparkles: add object field convenience accessors + + ## v4.32.1 - 2025-12-17 ### Changes * :sparkles: allow use of str, dict, or object to create a data schema replace diff --git a/mindee/versions.py b/mindee/versions.py index 9de60cbd..ff1c1830 100644 --- a/mindee/versions.py +++ b/mindee/versions.py @@ -1,6 +1,6 @@ import sys -__version__ = "4.32.1" +__version__ = "4.33.0" PYTHON_VERSION = f"{sys.version_info[0]}.{sys.version_info[1]}"