Skip to content

Commit

Permalink
Drop Ruby 2.x support
Browse files Browse the repository at this point in the history
  • Loading branch information
excid3 committed May 31, 2024
1 parent 12274e9 commit 78ea6cc
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ["2.7", "3.0", "3.1", "3.2", "3.3"]
ruby: ["3.0", "3.1", "3.2", "3.3"]
gemfile: ["faraday_1", "faraday_2"]

env:
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
== 2.0.0 / 2024-5-31

* Drop Ruby 2.7 and older support
* Add Faraday 2.0 support

== 1.0.0

* Vultr API v2 support
Expand Down
2 changes: 1 addition & 1 deletion lib/vultr/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Vultr
VERSION = "1.0.0"
VERSION = "2.0.0"
end
2 changes: 1 addition & 1 deletion vultr.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Gem::Specification.new do |s|
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
s.require_paths = ["lib"]

s.required_ruby_version = ">= 2.4"
s.required_ruby_version = ">= 3.0"

s.add_dependency "faraday", ">= 1.0", "< 3.0"
end

0 comments on commit 78ea6cc

Please sign in to comment.