Skip to content

Commit 1e5f914

Browse files
authored
Drop Ruby 3.1 support (#418)
Resolve #395
1 parent ed6fa22 commit 1e5f914

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

.github/workflows/pull_request.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ jobs:
1313
strategy:
1414
matrix:
1515
# https://www.ruby-lang.org/en/downloads/branches/
16-
ruby: [ '3.1', '3.2', '3.3' ]
16+
ruby:
17+
- '3.2'
18+
- '3.3'
1719
name: Ruby v${{ matrix.ruby }}
1820
steps:
1921
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Also, generated documentation by YARD is available.
1818
- https://rubydoc.info/gems/line-bot-api
1919

2020
## Requirements
21-
This library requires Ruby 3.1 or later.
21+
This library requires Ruby 3.2 or later.
2222

2323
## Installation
2424

README_v2.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Also, generated documentation by YARD is available.
1818
- https://rubydoc.info/gems/line-bot-api
1919

2020
## Requirements
21-
This library requires Ruby 3.1 or later.
21+
This library requires Ruby 3.2 or later.
2222

2323
## Installation
2424

line-bot-api.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Gem::Specification.new do |spec|
1717
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
1818
spec.require_paths = ["lib"]
1919

20-
spec.required_ruby_version = '>= 2.4.0'
20+
spec.required_ruby_version = '>= 3.2.0'
2121

2222
spec.add_dependency "multipart-post", "~> 2.4.1"
2323

0 commit comments

Comments
 (0)