Skip to content

Commit f4f3244

Browse files
🔖 Version 5.1.0 (#433)
1 parent f281a09 commit f4f3244

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
# Mindee Python Client Library Changelog
22

3-
## Unreleased
4-
### ¡Breaking Changes!
3+
## v5.1.0 - 2026-06-19
4+
### Changes
55
* :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
66
* :boom: :coffin: remove the separate `mindeeV2` script entry point; use `mindee` for both V1 (via `mindee v1 …`) and V2
77
* :boom: :recycle: refactor the V2 CLI from a central `InferenceCommand` config to one class per command (`ClassificationCommand`, `CropCommand`, `ExtractionCommand`, `OcrCommand`, `SplitCommand`) extending a new `BaseInferenceCommand`. `InferenceCommand` and `InferenceCommandOptions` are no longer exported from `mindee.v2.commands`.
8-
### Changes
98
* :sparkles: add `--output/-o` (`summary` / `full` / `raw`) plus per-product `--api-key/-k`, `--model-id/-m`, `--alias/-a` flags; expose extraction-only `--rag/-g`, `--raw-text/-r`, `--confidence/-c`, `--polygon/-p`, `--text-context/-t`
109
* :sparkles: add `ocr` subcommand to the V2 CLI
1110
* :sparkles: add `--verbose/-v` flag on the CLI (repeat for debug-level output)
1211
* :sparkles: `SearchResponse` now extends `CommonResponse` and exposes `raw_http`
1312
* :white_check_mark: add `tests/test_v1_cli.sh` and `tests/test_v2_cli.sh` integration scripts and a `_test-cli.yml` workflow mirroring the .NET CLI test setup
1413

14+
1515
## v5.0.0 - 2026-06-17
1616
### ¡Breaking Changes!
1717
* :boom: :recycle: update V1 & V2 syntaxes to match other SDKs

mindee/versions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import sys
22

3-
__version__ = "5.0.0"
3+
__version__ = "5.1.0"
44

55
PYTHON_VERSION = f"{sys.version_info[0]}.{sys.version_info[1]}"
66

0 commit comments

Comments
 (0)