Skip to content

Commit

Permalink
Merge pull request #67 from alphagov/drop-ruby-2-7-support
Browse files Browse the repository at this point in the history
Drop Ruby 2.7 support
  • Loading branch information
MuriloDalRi authored Mar 28, 2023
2 parents fe74e90 + a618a0e commit 22199e5
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
fail-fast: false
matrix:
# Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0'
ruby: [2.7, '3.0', 3.1, 3.2]
ruby: ['3.0', 3.1, 3.2]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.7.6
3.0.5
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Unreleased

* Drop support for Ruby 2.7.

# 1.6.3

* Use proc for single plural languages https://github.com/alphagov/rails_translation_manager/pull/62
Expand Down
1 change: 1 addition & 0 deletions rails_translation_manager.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Gem::Specification.new do |spec|
spec.homepage = ""
spec.license = "MIT"

spec.required_ruby_version = ">= 3.0"
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
Expand Down

0 comments on commit 22199e5

Please sign in to comment.