Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Mindee Python API Library Changelog

## v4.24.0-rc2 - 2025-07-09
### Changes
* :sparkles: merge enqueue parameters into a single object
* :sparkles: add dot access to object fields
### Fixes
* :recycle: remove deprecated files
* :art: touch up string representation for most objects.


## v4.24.0-rc1 - 2025-07-07
### Changes
* :sparkles: add support for mindee API V2 client & features
Expand Down
1 change: 0 additions & 1 deletion docs/extras/code_samples/default_v2.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@

from mindee import ClientV2, InferencePredictOptions
from mindee.parsing.v2 import InferenceResponse, PollingResponse
from tests.product import PRODUCT_DATA_DIR

input_path = "/path/to/the/file.ext"
api_key = "MY_API_KEY"
Expand Down
2 changes: 1 addition & 1 deletion mindee/versions.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import sys

__version__ = "4.24.0-rc1"
__version__ = "4.24.0-rc2"

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

Expand Down