Skip to content

Commit

Permalink
[TASK] Drop support for Ruby 2.6
Browse files Browse the repository at this point in the history
The EOL of Ruby 2.6 is 2022-03-31:
https://www.ruby-lang.org/en/downloads/branches/

Fixes #136
  • Loading branch information
oliverklee committed Mar 3, 2022
1 parent 9dcc4d5 commit 78dc274
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,15 +61,12 @@ jobs:
fail-fast: false
matrix:
include:
- { 'rails': '5.2', 'ruby': '2.6.9' }
- { 'rails': '5.2', 'ruby': '2.7.5' }
- { 'rails': '5.2', 'ruby': '3.0.3' }
- { 'rails': '5.2', 'ruby': '3.1.1' }
- { 'rails': '6.0', 'ruby': '2.6.9' }
- { 'rails': '6.0', 'ruby': '2.7.5' }
- { 'rails': '6.0', 'ruby': '3.0.3' }
- { 'rails': '6.0', 'ruby': '3.1.1' }
- { 'rails': '6.1', 'ruby': '2.6.9' }
- { 'rails': '6.1', 'ruby': '2.7.5' }
- { 'rails': '6.1', 'ruby': '3.0.3' }
- { 'rails': '6.1', 'ruby': '3.1.1' }
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ require:
- rubocop-rails

AllCops:
TargetRubyVersion: 2.6
TargetRubyVersion: 2.7
TargetRailsVersion: 5.2
NewCops: enable

Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ about why a change log is important.
### Deprecated

### Removed
- Drop support for Ruby 2.5 (#127)
- Drop support for Ruby 2.5 and 2.6 (#127, #145)

### Fixed
- Avoid modifying a frozen array in Ruby 3 (#135)
Expand Down
2 changes: 1 addition & 1 deletion page_title_helper.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Gem::Specification.new do |s|
s.summary = 'Simple, internationalized and DRY page titles and headings for Rails.'
s.description = 'Simple, internationalized and DRY page titles and headings for Rails.'

s.required_ruby_version = '>= 2.6.0'
s.required_ruby_version = '>= 2.7.0'

s.authors = ['Lukas Westermann']
s.email = ['[email protected]']
Expand Down

0 comments on commit 78dc274

Please sign in to comment.