Skip to content

Commit bf00e71

Browse files
committed
Removed support for ruby 2.5 which is EOL
1 parent 2925afd commit bf00e71

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
--health-retries 5
1616
strategy:
1717
matrix:
18-
ruby: ['2.5', '2.6', '2.7', '3.0', '3.1']
18+
ruby: ['2.6', '2.7', '3.0', '3.1']
1919
rails: ['5.2', '6.0.0', '6.1.0', '7.0.0']
2020
exclude:
2121
- ruby: "2.5"

Changelog.md

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
### Additions/Changes
44

55
* Add Ruby 3.0 and 3.1 to the CI matrix and fix groups block arity check for ruby 3 (https://github.com/jnunemaker/flipper/pull/601)
6+
* Removed support for Ruby 2.5 (which was end of line 9 months ago)
67

78
## 0.23.1
89

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ruby:2.5
1+
FROM ruby:3.0
22

33
RUN apt-get update && apt-get install -y \
44
# build-essential \

0 commit comments

Comments
 (0)