Skip to content

Commit 2e78d79

Browse files
committed
chore(ruby): Remove Ruby 2.7 support
Signed-off-by: Dmitry Dygalo <[email protected]>
1 parent 0ac4e6c commit 2e78d79

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -482,10 +482,7 @@ jobs:
482482
fail-fast: false
483483
matrix:
484484
os: [ubuntu-22.04, macos-13, windows-2022]
485-
ruby-version: ["2.7", "3.2", "3.3"]
486-
exclude:
487-
- os: "macos-13"
488-
ruby-version: "2.7"
485+
ruby-version: ["3.2", "3.3"]
489486

490487
name: Ruby ${{ matrix.ruby-version }} on ${{ matrix.os }}
491488
runs-on: ${{ matrix.os }}

bindings/ruby/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66

77
- Bump MSRV to `1.71.1`.
88

9+
### Removed
10+
11+
- Support for Ruby 2.7
12+
913
## [0.14.3] - 2024-11-14
1014

1115
### Fixed

bindings/ruby/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ into:
4141
- Can process multiple documents in parallel
4242
- Works on Linux, Windows, and macOS
4343
- Supports HTML5 & CSS3
44-
- Tested on Ruby 2.7, 3.2, and 3.3.
44+
- Tested on Ruby 3.2, and 3.3.
4545

4646
## Playground
4747

bindings/ruby/css_inline.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Gem::Specification.new do |spec|
2222
}
2323

2424
spec.requirements = ["Rust >= 1.71.1"]
25-
spec.required_ruby_version = ">= 2.7.0"
25+
spec.required_ruby_version = ">= 3.2.0"
2626
spec.required_rubygems_version = ">= 3.3.26"
2727

2828
spec.add_development_dependency "rake-compiler", "~> 1.2.0"

0 commit comments

Comments
 (0)