Skip to content

Commit

Permalink
Make 3.0 the minimum supported Ruby version
Browse files Browse the repository at this point in the history
  • Loading branch information
iMacTia authored and olleolleolle committed Dec 28, 2023
1 parent 9487833 commit 8cbfd75
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ require:
AllCops:
DisplayCopNames: true
DisplayStyleGuide: true
TargetRubyVersion: 2.6
TargetRubyVersion: 3.0

# Custom config
Gemspec/RequireMFA: # we don't know if this works with auto-deployments yet
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Need more details? See the [Faraday API Documentation][apidoc] to see how it wor
This library aims to support and is [tested against][actions] the currently officially supported Ruby
implementations. This means that, even without a major release, we could add or drop support for Ruby versions,
following their [EOL](https://endoflife.date/ruby).
Currently that means we support Ruby 2.6+
Currently that means we support Ruby 3.0+

If something doesn't work on one of these Ruby versions, it's a bug.

Expand Down
2 changes: 1 addition & 1 deletion faraday.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Gem::Specification.new do |spec|
spec.homepage = 'https://lostisland.github.io/faraday'
spec.licenses = ['MIT']

spec.required_ruby_version = '>= 2.6'
spec.required_ruby_version = '>= 3.0'

# faraday-net_http is the "default adapter", but being a Faraday dependency it can't
# control which version of faraday it will be pulled from.
Expand Down

0 comments on commit 8cbfd75

Please sign in to comment.