Skip to content

Commit

Permalink
Allow running on Rails 7.1.x
Browse files Browse the repository at this point in the history
Rails 7.1 didn't break compatibility, so just bump the allowed version.
  • Loading branch information
bfad committed Nov 29, 2023
1 parent 7666f1f commit aa607ba
Show file tree
Hide file tree
Showing 2 changed files with 2 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 @@ -16,7 +16,7 @@ jobs:
matrix:
os: [ubuntu-latest, macos-latest]
ruby-version: ['2.7', '3.0', '3.1', '3.2']
rails-version: ['6.1', '7.0']
rails-version: ['6.1', '7.0', '7.1']
runs-on: ${{ matrix.os }}
env:
RAILS_VERSION: "${{ matrix.rails-version }}"
Expand Down
2 changes: 1 addition & 1 deletion scrapbook.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ Gem::Specification.new do |spec|
end

spec.required_ruby_version = '>= 2.7.0'
spec.add_dependency 'rails', '>= 6.1', '< 7.1'
spec.add_dependency 'rails', '>= 6.1', '< 7.2'
end

0 comments on commit aa607ba

Please sign in to comment.