Skip to content

Commit

Permalink
Merge pull request #324 from ruby-formatter/drop-2.7
Browse files Browse the repository at this point in the history
Drop Ruby 2.7 support
kzkn authored May 29, 2024
2 parents 63184e3 + fd2e170 commit 8f625c4
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby_version: ['3.3', '3.2', '3.1', '3.0', '2.7']
ruby_version: ['3.3', '3.2', '3.1', '3.0']

steps:
- uses: actions/checkout@v3
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@ AllCops:
Exclude:
- "spec/**/*"
- "vendor/**/*"
TargetRubyVersion: 2.7
TargetRubyVersion: 3.0

Layout:
Enabled: false
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -10,6 +10,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

### Changed

- Dropped support for Ruby 2.7 as it is end of life.

### Added

## [0.17.1] - 2024-02-03
2 changes: 1 addition & 1 deletion rufo.gemspec
Original file line number Diff line number Diff line change
@@ -20,7 +20,7 @@ Gem::Specification.new do |spec|
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 2.7.0"
spec.required_ruby_version = ">= 3.0.0"
spec.metadata["rubygems_mfa_required"] = "true"

spec.add_development_dependency "bundler", ">= 1.15"

0 comments on commit 8f625c4

Please sign in to comment.