Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop Rails 6.1 support #36

Merged
merged 1 commit into from
Nov 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.