Skip to content

Commit

Permalink
[FEATURE] Add support for Rails 7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
joshRpowell committed Oct 5, 2023
1 parent 94ef8ce commit 24744ce
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ jobs:
run: |
bundle exec rubocop Gemfile \
gemfiles/Gemfile.rails-6.0 \
gemfiles/Gemfile.rails-6.1 gemfiles/Gemfile.rails-7.0 \
gemfiles/Gemfile.rails-6.1 \
gemfiles/Gemfile.rails-7.0 \
gemfiles/Gemfile.rails-7.1 \
lib/ test/ Rakefile
test:
name: "Tests: Ruby ${{ matrix.ruby }} / Rails ${{ matrix.rails }}"
Expand Down Expand Up @@ -73,3 +75,6 @@ jobs:
- { 'rails': '7.0', 'ruby': '3.0.6' }
- { 'rails': '7.0', 'ruby': '3.1.4' }
- { 'rails': '7.0', 'ruby': '3.2.2' }
- { 'rails': '7.1', 'ruby': '3.0.6' }
- { 'rails': '7.1', 'ruby': '3.1.4' }
- { 'rails': '7.1', 'ruby': '3.2.2' }
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ about why a change log is important.
## x.y.z

### Added
- Add support for Rails 7.1 (#166)
- Add official support for Ruby 3.2 (#157)

### Changed
Expand Down
7 changes: 7 additions & 0 deletions gemfiles/Gemfile.rails-7.1
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# frozen_string_literal: true

source 'https://rubygems.org'

gem 'rails', '~> 7.1.0'

gemspec path: '../'
2 changes: 1 addition & 1 deletion page_title_helper.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Gem::Specification.new do |s|

s.license = 'MIT'

s.add_dependency 'rails', '>= 6.0.0', '< 7.1'
s.add_dependency 'rails', '>= 6.0.0', '< 7.2'

s.add_development_dependency 'rake', '~> 13.0.6'
s.add_development_dependency 'rubocop', '~> 1.56.4'
Expand Down

0 comments on commit 24744ce

Please sign in to comment.