Skip to content

Commit

Permalink
Dropped support for Ruby < 3.1 and Rails < 6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ankane committed Jun 17, 2024
1 parent 00d818e commit 8881b1d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,12 @@ jobs:
include:
- ruby: 3.3
gemfile: gemfiles/activerecord72.gemfile
- ruby: 3.2
- ruby: 3.3
gemfile: Gemfile
- ruby: 3.1
- ruby: 3.2
gemfile: gemfiles/activerecord70.gemfile
- ruby: "3.0"
- ruby: 3.1
gemfile: gemfiles/activerecord61.gemfile
- ruby: 2.7
gemfile: gemfiles/activerecord60.gemfile
env:
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
steps:
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.4.0 (unreleased)

- Dropped support for Ruby < 3.1 and Rails < 6.1

## 0.3.1 (2022-11-06)

- Fixed dropping views for `change_table`, `drop_join_table`, `remove_belongs_to`, and `remove_reference`
Expand Down
4 changes: 2 additions & 2 deletions hypershield.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Gem::Specification.new do |spec|
spec.files = Dir["*.{md,txt}", "{lib}/**/*"]
spec.require_path = "lib"

spec.required_ruby_version = ">= 2.7"
spec.required_ruby_version = ">= 3.1"

spec.add_dependency "activerecord", ">= 6"
spec.add_dependency "activerecord", ">= 6.1"
end

0 comments on commit 8881b1d

Please sign in to comment.