diff --git a/CHANGELOG.md b/CHANGELOG.md index 0571d8e1..72820823 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Mindee Python Client Library Changelog +## v4.35.0 - 2026-03-01 +### Changes +* :sparkles: add support for crop extraction +* :sparkles: add support for split extraction +* :sparkles: add support for minimal V2 CLI +### Fixes +* :bug: fix file saves from crop/split extractors breaking in some instances +* :recycle: fix cron + + ## v4.34.0 - 2026-02-23 ### Changes * :sparkles: add job information to the inference object diff --git a/mindee/versions.py b/mindee/versions.py index 483d82e3..dfe63ff2 100644 --- a/mindee/versions.py +++ b/mindee/versions.py @@ -1,6 +1,6 @@ import sys -__version__ = "4.34.0" +__version__ = "4.35.0" PYTHON_VERSION = f"{sys.version_info[0]}.{sys.version_info[1]}"