Skip to content

Commit 5cee675

Browse files
committed
Version 1.2.0
1 parent df24c04 commit 5cee675

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Mindee Ruby API Library Changelog
22

3+
## v1.2.0 - 2022-12-26
4+
### Changes
5+
* :arrow_up: switch to origamindee => adds support for Ruby 3
6+
37
## v1.1.2 - 2022-12-23
48
### Changes
59
* :recycle: use of `append_page` is better for adding pages to a new PDF

README.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
# Mindee API Helper Library for Ruby
77
Quickly and easily connect to Mindee's API services using Ruby.
88

9+
## Requirements
10+
The following Ruby versions are tested and supported: 2.6, 2.7, 3.0, 3.1
11+
912
## Quick Start
1013
Here's the TL;DR of getting started.
1114

@@ -48,13 +51,13 @@ require 'mindee'
4851

4952
# Init a new client and configure your custom document
5053
mindee_client = Mindee::Client.new(api_key: 'my-api-key').config_custom_doc(
51-
'pokemon-card',
52-
'pikachu'
54+
'john',
55+
'wnine'
5356
)
5457

5558
# Load a file from disk and parse it
5659
api_response = mindee_client.doc_from_path('/path/to/the/file.ext')
57-
.parse('pokemon-card')
60+
.parse('wnine')
5861

5962
# Print a brief summary of the parsed data
6063
puts api_response.document
@@ -68,6 +71,6 @@ All the juicy details are described in the
6871
**[Official Documentation](https://developers.mindee.com/docs/ruby-getting-started)**.
6972

7073
## License
71-
Copyright © Mindee
74+
Copyright © Mindee, SA
7275

7376
Available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).

lib/mindee/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Mindee
44
module Mindee
5-
VERSION = '1.1.2'
5+
VERSION = '1.2.0'
66

77
def self.find_platform
88
host = RbConfig::CONFIG['host_os']

0 commit comments

Comments
 (0)