Skip to content

Commit

Permalink
Merge pull request #45 from schoetlr/support-rails-7
Browse files Browse the repository at this point in the history
Support Rails 7
  • Loading branch information
cmmgurski authored Nov 1, 2023
2 parents dc07f0e + 27e80e3 commit ed77ba5
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
6 changes: 6 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
3.0.1 / 2023-11-1
==================

* Changes to support Rails 7


3.0.0 / 2021-05-12
==================

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,5 +75,6 @@ end
## Compatibility
- For Rails < 6.0 compatibility, please use v2.0.1.
- For Rails >= 6.0 compatibility, please use v3.0.0.
- For Rails >= 7.0, please use v3.0.1

DO NOT run SqlFootprint in production!
2 changes: 1 addition & 1 deletion lib/sql_footprint/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module SqlFootprint
VERSION = '3.0.0'.freeze
VERSION = '3.0.1'.freeze
end
4 changes: 2 additions & 2 deletions sql_footprint.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']

spec.add_dependency 'activerecord', ['>= 6.0', '< 7.0']
spec.add_dependency 'activesupport', ['>= 6.0', '< 7.0']
spec.add_dependency 'activerecord', ['>= 6.0', '< 8.0']
spec.add_dependency 'activesupport', ['>= 6.0', '< 8.0']

spec.add_development_dependency 'bundler', ['>= 1.7', '< 3.0']
spec.add_development_dependency 'rake', '~> 10.0'
Expand Down

0 comments on commit ed77ba5

Please sign in to comment.