diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e44d919..0b2bb19d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Mindee Ruby API Library Changelog +## v5.3.0 - 2026-07-03 +### Changes: +* :memo: add SKILL file +* :recycle: use generic array types for images, PDFs +* :sparkles: allow passing webhooks to the CLI +* :sparkles: add webhook error response +### Fixes: +* :bug: fix for extraction method naming + ## v5.2.2 - 2026-06-18 ### Changes * :recycle: refactor CLI to conform with other client libraries diff --git a/lib/mindee/version.rb b/lib/mindee/version.rb index a88ad003..b283da26 100644 --- a/lib/mindee/version.rb +++ b/lib/mindee/version.rb @@ -3,7 +3,7 @@ # Mindee module Mindee # Current version. - VERSION = '5.2.2' + VERSION = '5.3.0' # Finds and return the current platform. # @return [Symbol, Hash[String | Symbol, Regexp], Nil?] diff --git a/spec/v2/file_operations/crop_operation_integration.rb b/spec/v2/file_operations/crop_operation_integration.rb index 4a012997..a2239bf9 100644 --- a/spec/v2/file_operations/crop_operation_integration.rb +++ b/spec/v2/file_operations/crop_operation_integration.rb @@ -66,8 +66,8 @@ def check_findoc_return(findoc_response) extracted_images.save_all_to_disk(OUTPUT_DIR) - expect(File.size(File.join(OUTPUT_DIR, 'default_sample.jpg_page0-0.jpg'))).to be_between(560_000, 700_000) - expect(File.size(File.join(OUTPUT_DIR, 'default_sample.jpg_page0-1.jpg'))).to be_between(580_000, 700_000) + expect(File.size(File.join(OUTPUT_DIR, 'default_sample.jpg_page0-0.jpg'))).to be_between(500_000, 800_000) + expect(File.size(File.join(OUTPUT_DIR, 'default_sample.jpg_page0-1.jpg'))).to be_between(500_000, 800_000) ensure crop_input.close if crop_input.respond_to?(:close) end