diff --git a/CHANGELOG.md b/CHANGELOG.md index 91f45cdc..17042779 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Mindee Python Client Library Changelog +## v5.1.1 - 2026-06-19 +### Fixes +* :bug: fix building docs +* :bug: fix search imports + + ## v5.1.0 - 2026-06-19 ### Changes * :boom: :sparkles: unify the `mindee` CLI to mirror the .NET reference: V2 inference commands (`classification`, `crop`, `extraction`, `ocr`, `split`) and `search-models` at the root, V1 product commands wrapped under a `v1` subcommand diff --git a/mindee/versions.py b/mindee/versions.py index 8855c8ac..c0a0a89e 100644 --- a/mindee/versions.py +++ b/mindee/versions.py @@ -1,6 +1,6 @@ import sys -__version__ = "5.1.0" +__version__ = "5.1.1" PYTHON_VERSION = f"{sys.version_info[0]}.{sys.version_info[1]}"