Skip to content

Commit 9be565b

Browse files
authored
Support rails 7 (#27)
1 parent cfeebd9 commit 9be565b

File tree

5 files changed

+14
-4
lines changed

5 files changed

+14
-4
lines changed

.github/workflows/run_tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
matrix:
1010
ruby: [2.7.x]
11-
appraisal: ["rails-5", "rails-6"]
11+
appraisal: ["rails-5", "rails-6", "rails-7"]
1212
steps:
1313
- uses: actions/checkout@v1
1414
- name: Setup System

Appraisals

+6
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@ appraise 'rails-6' do
1818
gem 'sqlite3', '~> 1.4'
1919
end
2020

21+
appraise 'rails-7' do
22+
gem 'activerecord', '~> 7.0'
23+
gem 'activesupport', '~> 7.0'
24+
gem 'sqlite3', '~> 1.4'
25+
end
26+
2127
appraise 'rails-edge' do
2228
gem 'activerecord', git: 'https://github.com/rails/rails.git'
2329
gem 'activesupport', git: 'https://github.com/rails/rails.git'

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.6.0] - 2022-01-05
10+
### Changed
11+
- Support Rails 7
12+
913
## [0.5.3] - 2021-05-26
1014
### Changed
1115
- Re-release of previous version due to accidental premature release

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.5.3
1+
0.6.0

query-matchers.gemspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ Gem::Specification.new do |spec|
2626

2727
spec.require_paths = ['lib']
2828

29-
spec.add_runtime_dependency 'activerecord', '>= 4.0', '< 7.0'
30-
spec.add_runtime_dependency 'activesupport', '>= 4.0', '< 7.0'
29+
spec.add_runtime_dependency 'activerecord', '>= 4.0'
30+
spec.add_runtime_dependency 'activesupport', '>= 4.0'
3131
spec.add_runtime_dependency 'rspec', '~> 3.0'
3232

3333
spec.add_development_dependency 'appraisal'

0 commit comments

Comments
 (0)