Skip to content

Commit

Permalink
Drop Rails 6.1 support
Browse files Browse the repository at this point in the history
  • Loading branch information
alpaca-tc committed Nov 11, 2024
1 parent b3e686b commit 3bbdcfa
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
gemfile: ['6.1_stable', '7.0_stable', '7.1_stable', '7.2_stable']
gemfile: ['7.0_stable', '7.1_stable', '7.2_stable']
ruby-version: ['3.1', '3.2', '3.3']
services:
mysql:
Expand Down
5 changes: 0 additions & 5 deletions Appraisals
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
# frozen_string_literal: true

appraise '6.1-stable' do
gem 'activerecord', '~> 6.1.0'
gem 'sqlite3', '~> 1.7.0'
end

appraise '7.0-stable' do
gem 'activerecord', '~> 7.0.0'
gem 'sqlite3', '~> 1.7.0'
Expand Down
8 changes: 5 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
## Unreleased

- Drop Rails 6.1 support #36

## 1.0.0

- EOL Ruby and Rails no longer supported #29
- Requires Ruby 3.0.0 or newer.
- Requires Rails 6.1.0 or newer.
- EOL Ruby and Rails no longer supported #29 #30
- Support rails 7.0.0 #25
- Support rails 7.1.0 #31
- Migrate CI from travis.ci to GitHub Action. #27
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,9 @@ end
### Run spec
```bash
docker compose up -d
bundle exec appraisal install
bundle exec appraisal 6.1-stable rspec
bundle exec appraisal 7.0-stable rspec
bundle exec appraisal rspec
```
## Contributing
Expand Down
2 changes: 1 addition & 1 deletion active_record_encryption.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Gem::Specification.new do |spec|
LICENSE.txt
] + Dir['lib/**/*.rb']

spec.add_dependency 'activerecord', '>= 6.1'
spec.add_dependency 'activerecord', '>= 7.0'

spec.add_development_dependency 'appraisal'
spec.add_development_dependency 'guard-rspec'
Expand Down
8 changes: 0 additions & 8 deletions gemfiles/6.1_stable.gemfile

This file was deleted.

0 comments on commit 3bbdcfa

Please sign in to comment.