diff --git a/CHANGELOG.md b/CHANGELOG.md index 563e71d..9a39034 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## v0.11.0, 18 April 2018 + +- Automatically detect the correct Onfido API region to use based on the provided API +key (#49) (@tpinto) + ## v0.10.0, 3 April 2018 - Add support for download, find and retrieve all for live_photo resource (@kirsis) diff --git a/README.md b/README.md index 4447e37..fd0dea5 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ This gem supports both `v1` and `v2` of the Onfido API. Refer to Onfido's [API d Add this line to your application's Gemfile: ```ruby -gem 'onfido', '~> 0.10.0' +gem 'onfido', '~> 0.11.0' ``` The gem is compatible with Ruby 2.2.0 and onwards. Earlier versions of Ruby have [reached end-of-life](https://www.ruby-lang.org/en/news/2017/04/01/support-of-ruby-2-1-has-ended/), are no longer supported and no longer receive security fixes. diff --git a/lib/onfido/version.rb b/lib/onfido/version.rb index 562d094..ccbe786 100644 --- a/lib/onfido/version.rb +++ b/lib/onfido/version.rb @@ -1,3 +1,3 @@ module Onfido - VERSION = '0.10.0'.freeze + VERSION = '0.11.0'.freeze end