diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c0ab6f1..e56e7688 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Mindee Python API Library Changelog +## v3.8.1 - 2023-05-11 +### Fixes +* :bug: fix naming of job ID property + ## v3.8.0 - 2023-05-10 ### Changes * :sparkles: add support for Invoice Splitter V1 diff --git a/docs/extras/code_samples/invoice_splitter_v1_async.txt b/docs/extras/code_samples/invoice_splitter_v1_async.txt index fc025265..c78b840e 100644 --- a/docs/extras/code_samples/invoice_splitter_v1_async.txt +++ b/docs/extras/code_samples/invoice_splitter_v1_async.txt @@ -24,7 +24,7 @@ times_tried = 1 queue_result = input_doc.enqueue(doc_class) # Get the id of the queue (job) -queue_id = queue_result.job.job_id +queue_id = queue_result.job.id # Recursive function that tries to retrieve the completed document. # If the document is not "complete", try again diff --git a/mindee/version b/mindee/version index 0be1fc7d..aaaff919 100644 --- a/mindee/version +++ b/mindee/version @@ -1 +1 @@ -3.8.0 \ No newline at end of file +3.8.1 \ No newline at end of file