Skip to content

Commit

Permalink
Merge pull request #63 from onfido/release-upgrade
Browse files Browse the repository at this point in the history
Refresh onfido-ruby after onfido-openapi-spec update (f5555a0)
  • Loading branch information
dvacca-onfido authored Aug 22, 2024
2 parents c66a04b + 38a37c2 commit e8a858e
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .release.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"source": {
"repo_url": "https://github.com/onfido/onfido-openapi-spec",
"short_sha": "f941ec8",
"long_sha": "f941ec84c3aeb0d3fcceea537991ba7e1ac96414",
"version": "v3.3.0"
"short_sha": "f5555a0",
"long_sha": "f5555a0a68778432f3b4854885b496116ac3730c",
"version": "v3.3.1"
},
"release": "v3.3.0"
"release": "v3.3.1"
}
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
## v3.3.0 24th July 2024

- Release based on Onfido OpenAPI spec version [v3.3.0](https://github.com/onfido/onfido-openapi-spec/releases/tag/v3.3.0):
- Expose `customer_user_id` in `workflow_runs`
- Add `sdk_token` to workflow run schema
- Expose `customer_user_id` in `workflow_runs`
- Add `sdk_token` to workflow run schema

## v3.2.0 18th July 2024

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ This version uses Onfido API v3.6. Refer to our [API versioning guide](https://d
### Installation

```ruby
gem onfido, '~> 3.3.0'
gem onfido, '~> 3.3.1'
```

Configure with your API token, region and optional timeout (default value is 30):
Expand Down
2 changes: 1 addition & 1 deletion lib/onfido/api_client.rb
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class ApiClient
# @option config [Configuration] Configuration for initializing the object, default to Configuration.default
def initialize(config = Configuration.default)
@config = config
@user_agent = "onfido-ruby/3.3.0"
@user_agent = "onfido-ruby/3.3.1"
@default_headers = {
'Content-Type' => 'application/json',
'User-Agent' => @user_agent
Expand Down
2 changes: 1 addition & 1 deletion lib/onfido/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
=end

module Onfido
VERSION = '3.3.0'
VERSION = '3.3.1'
end
1 change: 1 addition & 0 deletions onfido.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ Gem::Specification.new do |s|
s.metadata = {}

s.add_runtime_dependency 'faraday', '>= 1.0.1', '< 3.0'
s.add_runtime_dependency 'faraday-follow_redirects', '~> 0.3.0'
s.add_runtime_dependency 'faraday-multipart'
s.add_runtime_dependency 'marcel'
s.add_runtime_dependency 'openssl'
Expand Down

0 comments on commit e8a858e

Please sign in to comment.