Skip to content

Commit

Permalink
Merge pull request #677 from kbrock/rails_71
Browse files Browse the repository at this point in the history
add tests for 7.1 and bump versions
  • Loading branch information
kbrock committed Jan 3, 2024
2 parents 9dab81f + 9e6f653 commit c2df44c
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run_test_suite.yml
Expand Up @@ -42,7 +42,7 @@ jobs:
# - https://www.ruby-lang.org/en/downloads/branches/
# - https://guides.rubyonrails.org/maintenance_policy.html
format: [materialized_path, materialized_path2]
activerecord: [70]
activerecord: [70, 71]
ruby: [3.1, 3.2]
# additional tests
include:
Expand Down
2 changes: 1 addition & 1 deletion Appraisals
@@ -1,4 +1,4 @@
%w[5.2.6 6.0.3 6.1.3 7.0.0].each do |ar_version|
%w[5.2.8 6.0.6 6.1.7 7.0.8 7.1.2].each do |ar_version|
appraise "gemfile-#{ar_version.split('.').first(2).join}" do
gem 'activerecord', "~> #{ar_version}"
end
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/gemfile_52.gemfile
Expand Up @@ -2,7 +2,7 @@

source "https://rubygems.org"

gem "activerecord", "~> 5.2.6"
gem "activerecord", "~> 5.2.8"
gem "mysql2"
gem "pg"
gem "sqlite3"
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/gemfile_60.gemfile
Expand Up @@ -2,7 +2,7 @@

source "https://rubygems.org"

gem "activerecord", "~> 6.0.3"
gem "activerecord", "~> 6.0.6"
gem "mysql2"
gem "pg"
gem "sqlite3"
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/gemfile_61.gemfile
Expand Up @@ -2,7 +2,7 @@

source "https://rubygems.org"

gem "activerecord", "~> 6.1.3"
gem "activerecord", "~> 6.1.7"
gem "mysql2"
gem "pg"
gem "sqlite3"
Expand Down
12 changes: 6 additions & 6 deletions gemfiles/gemfile_70.gemfile
@@ -1,10 +1,10 @@
# This file was generated by Appraisal

source 'https://rubygems.org'
source "https://rubygems.org"

gem 'activerecord', '~> 7.0.0'
gem 'mysql2'
gem 'pg'
gem 'sqlite3'
gem "activerecord", "~> 7.0.8"
gem "mysql2"
gem "pg"
gem "sqlite3"

gemspec path: '../'
gemspec path: "../"
10 changes: 10 additions & 0 deletions gemfiles/gemfile_71.gemfile
@@ -0,0 +1,10 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "activerecord", "~> 7.1.2"
gem "mysql2"
gem "pg"
gem "sqlite3"

gemspec path: "../"

0 comments on commit c2df44c

Please sign in to comment.