Skip to content

Commit 17226c3

Browse files
committed
Drop Ruby 2.7 support
1 parent d871efc commit 17226c3

4 files changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/test.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ jobs:
1414
strategy:
1515
matrix:
1616
ruby:
17-
- "2.7"
1817
- "3.0"
1918
- "3.1"
2019
- "3.2"

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
## main (Unreleased)
22

3+
* Drop Ruby 2.7 support
4+
35
## 0.13.1
46

57
Bug fixes:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ A Ruby library for [Thinreports](https://github.com/thinreports/thinreports).
99

1010
### Supported Versions
1111

12-
- Ruby 2.7, 3.0, 3.1, 3.2
12+
- Ruby 3.0, 3.1, 3.2
1313
- Prawn 2.4+
1414

1515
## Installation

thinreports.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Gem::Specification.new do |s|
1515
s.license = 'MIT'
1616
s.metadata = { 'rubygems_mfa_required' => 'true' }
1717

18-
s.required_ruby_version = '>= 2.7.0'
18+
s.required_ruby_version = Gem::Requirement.new('>= 3.0.0')
1919

2020
s.files = Dir.chdir(File.expand_path('..', __FILE__)) do
2121
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^test/}) }

0 commit comments

Comments
 (0)