Skip to content

Commit

Permalink
remove rails upper version restriction
Browse files Browse the repository at this point in the history
  • Loading branch information
sufleR committed Apr 20, 2024
1 parent f272a88 commit 52c2df5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# SqlQuery change log

## 0.7.3 / Unreleased
## 0.7.5 / Unreleased

* [Added]

Expand All @@ -10,6 +10,12 @@

* [Fixed]

## 0.7.4 / 2024-04-20

* [Added] Remove upper restriction for rails

## 0.7.3 no changes

## 0.7.2 / 2022-01-23

* [Added] rails 7.0 as supported version https://github.com/sufleR/sql_query/pull/12
Expand Down
4 changes: 2 additions & 2 deletions sql_query.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)

Gem::Specification.new do |spec|
spec.name = 'sql_query'
spec.version = '0.7.2'
spec.version = '0.7.4'
spec.authors = ['sufleR']
spec.email = ['[email protected]']
spec.summary = 'Ruby gem to load and execute SQL queries from `.sql.erb` templates'
Expand All @@ -23,7 +23,7 @@ Gem::Specification.new do |spec|

spec.required_ruby_version = '>= 1.9.3'

spec.add_dependency 'activerecord', '>= 3.2', '<= 7.0'
spec.add_dependency 'activerecord', '>= 3.2'
spec.add_development_dependency 'appraisal'
spec.add_development_dependency 'bundler'
spec.add_development_dependency 'pg', '~> 0.18'
Expand Down

0 comments on commit 52c2df5

Please sign in to comment.