Skip to content

Commit

Permalink
Drop Ruby 3.0 (#904)
Browse files Browse the repository at this point in the history
  • Loading branch information
biow0lf authored Feb 11, 2024
1 parent cc737f7 commit 3a899e9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/rspec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: ["3.0", "3.1", "3.2", "3.3", "head"]
ruby: ["3.1", "3.2", "3.3", "head"]
activesupport: ["6.1", "7.0", "7.1", "main"]
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/activesupport_${{ matrix.activesupport }}.gemfile
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

* Rails 7.1
* Ruby 3.3.0
* Drop Ruby 3.0
* Add `base64` gem requirement

## v0.44.0

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ gem install eve_online

## Supported ruby versions

* MRI 3.0
* MRI 3.1
* MRI 3.2
* MRI 3.3

## Supported rails versions

Expand Down
3 changes: 2 additions & 1 deletion eve_online.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Gem::Specification.new do |spec|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features|bin|swagger)/}) }
spec.require_paths = ["lib"]

spec.required_ruby_version = ">= 3.0"
spec.required_ruby_version = ">= 3.1"

spec.add_development_dependency "bundler"
spec.add_development_dependency "rake"
Expand All @@ -35,6 +35,7 @@ Gem::Specification.new do |spec|
spec.add_development_dependency "webmock"
spec.add_development_dependency "vcr"

spec.add_runtime_dependency "base64"
spec.add_runtime_dependency "faraday", ">= 2.3.0"
spec.add_runtime_dependency "activesupport", ">= 6.1.0"
end

0 comments on commit 3a899e9

Please sign in to comment.