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
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Mindee Python API Library Changelog

## v3.4.0 - 2023-02-01
### Changes
* :sparkles: add support for: financial document v1
* :sparkles: add support for: proof of address v1

### Deprecations
The `FinancialV1` class is now *deprecated*.

It's still usable with no code modifications but will be **removed** in a future release.

All users are encouraged to move to `FinancialDocumentV1` which has much better performance.
Also field names in `FinancialDocumentV1` now match those of `Invoice` and `Receipt`.

## v3.3.0 - 2023-01-27
### Changes
* sparkles: Add French carte grise v1 support
Expand Down
2 changes: 1 addition & 1 deletion mindee/documents/financial/financial_v1.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def __init__(
"""
Union of `Invoice` and `Receipt`.

DEPRECATED, do not use.
DEPRECATED, use ``FinancialDocumentV1`` instead.

:param api_prediction: Raw prediction from HTTP response
:param input_source: Input object
Expand Down
2 changes: 1 addition & 1 deletion mindee/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.3.0
3.4.0