Skip to content

Commit 69ad0de

Browse files
committed
Fix Rails 7.1 install restriction
1 parent 33396f2 commit 69ad0de

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
1+
# 3.2.1 - February 17th 2023
2+
3+
### Bugfixes
4+
5+
- Allow for Rails 7.1 to be used with this gem
6+
17
# 3.2.0 - February 17th 2023
28

39
### Changes
4-
- Added Rails 7.2 CTE argument pattern support
10+
- Added Rails 7.1 CTE argument pattern support
511

612
### Bugfixes
713

Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
PATH
22
remote: .
33
specs:
4-
active_record_extended (3.2.0)
5-
activerecord (>= 5.2, < 7.1.0)
4+
active_record_extended (3.2.1)
5+
activerecord (>= 5.2, < 7.2.0)
66
pg (< 3.0)
77

88
GEM

active_record_extended.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Gem::Specification.new do |spec|
2020
spec.required_ruby_version = ">= 2.7"
2121
spec.metadata["rubygems_mfa_required"] = "true"
2222

23-
spec.add_dependency "activerecord", ">= 5.2", "< 7.1.0"
23+
spec.add_dependency "activerecord", ">= 5.2", "< 7.2.0"
2424
spec.add_dependency "pg", "< 3.0"
2525

2626
spec.add_development_dependency "bundler", ">= 2.2", "< 3.0"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module ActiveRecordExtended
4-
VERSION = "3.2.0"
4+
VERSION = "3.2.1"
55
end

0 commit comments

Comments
 (0)