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 e1b0325 commit bb32c29
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,3 +73,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 @@ -10,6 +10,7 @@ about why a change log is important.

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

### Changed

Expand Down
2 changes: 1 addition & 1 deletion gemfiles/Gemfile.rails-6.1
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

source 'https://rubygems.org'

gem 'rails', '~> 6.1.0'
gem 'rails', '~> 6.1.7'

gemspec path: '../'
2 changes: 1 addition & 1 deletion gemfiles/Gemfile.rails-7.0
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

source 'https://rubygems.org'

gem 'rails', '~> 7.0.2.2'
gem 'rails', '~> 7.0.8'

gemspec path: '../'
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.26.1'
Expand Down

0 comments on commit bb32c29

Please sign in to comment.