Skip to content

Commit

Permalink
Fix Rails 7.1 install restriction
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgeKaraszi committed Feb 17, 2023
1 parent 33396f2 commit 69ad0de
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
# 3.2.1 - February 17th 2023

### Bugfixes

- Allow for Rails 7.1 to be used with this gem

# 3.2.0 - February 17th 2023

### Changes
- Added Rails 7.2 CTE argument pattern support
- Added Rails 7.1 CTE argument pattern support

### Bugfixes

Expand Down
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
PATH
remote: .
specs:
active_record_extended (3.2.0)
activerecord (>= 5.2, < 7.1.0)
active_record_extended (3.2.1)
activerecord (>= 5.2, < 7.2.0)
pg (< 3.0)

GEM
Expand Down
2 changes: 1 addition & 1 deletion active_record_extended.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Gem::Specification.new do |spec|
spec.required_ruby_version = ">= 2.7"
spec.metadata["rubygems_mfa_required"] = "true"

spec.add_dependency "activerecord", ">= 5.2", "< 7.1.0"
spec.add_dependency "activerecord", ">= 5.2", "< 7.2.0"
spec.add_dependency "pg", "< 3.0"

spec.add_development_dependency "bundler", ">= 2.2", "< 3.0"
Expand Down
2 changes: 1 addition & 1 deletion lib/active_record_extended/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module ActiveRecordExtended
VERSION = "3.2.0"
VERSION = "3.2.1"
end

0 comments on commit 69ad0de

Please sign in to comment.