Skip to content

Commit 50dfebf

Browse files
committed
Dropped support for Ruby < 3.1 and Rails < 6.1
1 parent 8473b4d commit 50dfebf

File tree

4 files changed

+9
-21
lines changed

4 files changed

+9
-21
lines changed

.github/workflows/build.yml

+3-5
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,12 @@ jobs:
1010
- ruby: 3.3
1111
gemfile: gemfiles/activesupport72.gemfile
1212
vault: true
13-
- ruby: 3.2
13+
- ruby: 3.3
1414
gemfile: Gemfile
15-
- ruby: 3.1
15+
- ruby: 3.2
1616
gemfile: gemfiles/activesupport70.gemfile
17-
- ruby: "3.0"
17+
- ruby: 3.1
1818
gemfile: gemfiles/activesupport61.gemfile
19-
- ruby: "3.0"
20-
gemfile: gemfiles/activesupport60.gemfile
2119
env:
2220
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
2321
steps:

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.6.0 (unreleased)
2+
3+
- Dropped support for Ruby < 3.1 and Rails < 6.1
4+
15
## 1.5.1 (2023-09-05)
26

37
- Fixed deprecation warning with Active Support 7.1

gemfiles/activesupport60.gemfile

-14
This file was deleted.

kms_encrypted.gemspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Gem::Specification.new do |spec|
1313
spec.files = Dir["*.{md,txt}", "{lib}/**/*"]
1414
spec.require_path = "lib"
1515

16-
spec.required_ruby_version = ">= 3"
16+
spec.required_ruby_version = ">= 3.1"
1717

18-
spec.add_dependency "activesupport", ">= 6"
18+
spec.add_dependency "activesupport", ">= 6.1"
1919
end

0 commit comments

Comments
 (0)