Skip to content

Commit

Permalink
Unlock faraday_middleware version
Browse files Browse the repository at this point in the history
This is a followup to #309

We can't upgrade faraday to 1.x without also upgrading
faraday_middleware to 1.x, so the previous PR didn't get us all the way
there.

Not much changes in faraday_middleware 1.x except for faraday 1.x
support, so I expect elastomer-client to be fully compatible.

(We'll revisit this once more for faraday 2.0, which drops the
faraday_middleware gem entirely, but that's a problem for another day.)
  • Loading branch information
composerinteralia committed Jun 5, 2024
1 parent 791a473 commit d0164d7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 6.1.1 (2024-06-05)
- Unlock faraday_middleware version to allow 1.x

## 6.1.0 (2024-04-09)
- Replace `Faraday::Error::*` with `Faraday::*` error classes
- Handle all `Faraday::Error` instead of `Faraday::Error::ClientError`
Expand Down
2 changes: 1 addition & 1 deletion elastomer-client.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Gem::Specification.new do |spec|

spec.add_dependency "addressable", "~> 2.5"
spec.add_dependency "faraday", ">= 0.17"
spec.add_dependency "faraday_middleware", "~> 0.14"
spec.add_dependency "faraday_middleware", ">= 0.14"
spec.add_dependency "multi_json", "~> 1.12"
spec.add_dependency "semantic", "~> 1.6"
end
2 changes: 1 addition & 1 deletion lib/elastomer_client/version.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# frozen_string_literal: true

module ElastomerClient
VERSION = "6.1.0"
VERSION = "6.1.1"

def self.version
VERSION
Expand Down

0 comments on commit d0164d7

Please sign in to comment.