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 10, 2024
1 parent a971f03 commit 85fe914
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 16 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,9 @@ jobs:
- ruby: 3.1
gemfile: gemfiles/rails70.gemfile
elasticsearch: 8
- ruby: "3.0"
- ruby: 3.1
gemfile: gemfiles/rails61.gemfile
elasticsearch: 7
- ruby: 2.7
gemfile: gemfiles/rails60.gemfile
elasticsearch: 7
runs-on: ubuntu-latest
env:
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.2.0 (unreleased)

- Dropped support for Ruby < 3.1 and Rails < 6.1

## 1.1.0 (2023-02-07)

- Improved dashboard labels
Expand Down
10 changes: 0 additions & 10 deletions gemfiles/rails60.gemfile

This file was deleted.

4 changes: 2 additions & 2 deletions searchjoy.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ Gem::Specification.new do |spec|
spec.files = Dir["*.{md,txt}", "{app,config,lib,licenses}/**/*"]
spec.require_path = "lib"

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

spec.add_dependency "chartkick", ">= 3.2"
spec.add_dependency "groupdate", ">= 3"
spec.add_dependency "activerecord", ">= 6"
spec.add_dependency "activerecord", ">= 6.1"
end

0 comments on commit 85fe914

Please sign in to comment.