Skip to content

Commit 23633b7

Browse files
Bring back Ruby 2.7 support
It's EOL but the current versions of Rails are still supporting it, so it makes sense for us to keep supporting it as well. And it doesn't give us any extra maintenance burden as older versions have been doing.
1 parent c820737 commit 23633b7

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/test.yml

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ jobs:
1515
- '3.2'
1616
- '3.1'
1717
- '3.0'
18+
- '2.7'
1819
env:
1920
- DEVISE_ORM=active_record
2021
- DEVISE_ORM=mongoid

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
### Unreleased
22

3-
* Drop support to Ruby < 3.0
3+
* Drop support to Ruby < 2.7
44
* Drop support to Rails < 6.0
55

66
* enhancements

devise.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Gem::Specification.new do |s|
2525

2626
s.files = Dir["{app,config,lib}/**/*", "CHANGELOG.md", "MIT-LICENSE", "README.md"]
2727
s.require_paths = ["lib"]
28-
s.required_ruby_version = '>= 3.0.0'
28+
s.required_ruby_version = '>= 2.7.0'
2929

3030
s.add_dependency("warden", "~> 1.2.3")
3131
s.add_dependency("orm_adapter", "~> 0.1")

0 commit comments

Comments
 (0)