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

## v5.1.0 - 2026-05-13
### Changes
* :sparkles: Add support for extraction in crop, split, and classify products
* :sparkles: add typed accessors for SimpleField


## v5.0.0 - 2026-04-20
### ¡Breaking Changes!
* :boom: :recycle: update V1 & V2 syntaxes to match other SDKs
Expand Down
7 changes: 7 additions & 0 deletions docs/code_samples/v2_extraction.txt
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,10 @@ response = mindee_client.enqueue_and_get_result(

# Print a brief summary of the parsed data
puts response.inference

# Access the result fields
fields = response.inference.result.fields

# fields.get_simple_field('my_simple_field')
# fields.get_list_field('my_list_field')
# fields.get_object_field('my_object_field')
2 changes: 1 addition & 1 deletion lib/mindee/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Mindee
module Mindee
# Current version.
VERSION = '5.0.0'
VERSION = '5.1.0'

# Finds and return the current platform.
# @return [Symbol, Hash[String | Symbol, Regexp], Nil?]
Expand Down
Loading