From 45600c780f82126232cd936d50fa3fc3dea89c9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ianar=C3=A9=20S=C3=A9vi?= Date: Fri, 19 Jun 2026 15:23:40 +0200 Subject: [PATCH] :bookmark: Version 5.1.1 --- CHANGELOG.md | 6 ++++++ mindee/versions.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) 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]}"