Skip to content

Commit 82eb2ac

Browse files
authored
Require Ruby >= 3.3 and update CI Ruby versions (#173)
1 parent d861735 commit 82eb2ac

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
# https://github.com/oxidize-rb/actions/blob/main/fetch-ci-data/evaluate.rb#L54
2727
exclude: [arm-linux, x64-mingw32]
2828
stable-ruby-versions: |
29-
only: ['3.2', '3.3', '3.4', '4.0']
29+
only: ['3.3', '3.4', '4.0']
3030
3131
build:
3232
name: Build native gems

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
stable-ruby-versions: |
1919
# Explicitly include all Ruby versions we want to support
2020
# to ensure binaries are built for each version
21-
only: ['3.2', '3.3', '3.4', '4.0']
21+
only: ['3.3', '3.4', '4.0']
2222
rspec:
2323
runs-on: ${{ matrix.os }}
2424
needs: ci-data

.rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ AllCops:
1414
- vendor/bundle/**/**
1515
- tmp/**/**
1616
- target/**/**
17-
TargetRubyVersion: 3.2
17+
TargetRubyVersion: 3.3
1818

1919
Metrics/ParameterLists:
2020
Enabled: false

code_ownership.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Gem::Specification.new do |spec|
2121
'public gem pushes.'
2222
end
2323

24-
spec.required_ruby_version = Gem::Requirement.new('>= 3.2', '< 4.1.dev')
24+
spec.required_ruby_version = Gem::Requirement.new('>= 3.3', '< 4.1.dev')
2525

2626
# https://guides.rubygems.org/make-your-own-gem/#adding-an-executable
2727
# and

0 commit comments

Comments
 (0)