Skip to content

Commit

Permalink
Update gem requirements to allow Rails 7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
elektronaut committed Aug 12, 2024
1 parent 0a19566 commit 0d23e59
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
fail-fast: false
matrix:
ruby: [3.0, 3.1, 3.2]
rails: ['6.0', '6.1', '7.0', '7.1']
rails: ['6.0', '6.1', '7.0', '7.1', '7.2']
include:
- rails: '5.0'
ruby: 2.7
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

* ActiveRecord 7.2 compatibility

## 5.6.0

* ActiveRecord 7.1 compatibility
Expand Down
7 changes: 7 additions & 0 deletions gemfiles/activerecord-7.2.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
source 'https://rubygems.org'

gemspec :path=>"../"

gem 'activerecord', '< 7.3', '>= 7.2'
gem 'activesupport', '< 7.3', '>= 7.2'
gem "pg", ">= 0.18", "< 2.0"
2 changes: 1 addition & 1 deletion textacular.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,5 @@ Gem::Specification.new do |s|
s.add_development_dependency 'pry-doc'
s.add_development_dependency 'byebug'

s.add_dependency('activerecord', [">= 5.0", "< 7.2"])
s.add_dependency('activerecord', [">= 5.0", "< 7.3"])
end

0 comments on commit 0d23e59

Please sign in to comment.