From d083c16e25a094d83c7116206bda3044ddfc4675 Mon Sep 17 00:00:00 2001 From: Patrick Linnane Date: Fri, 17 Jul 2026 23:13:02 -0700 Subject: [PATCH] Drop support for Ruby 3.2 --- .github/workflows/tests.yml | 2 +- .rubocop.yml | 2 +- ruby-macho.gemspec | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 7e2617e47..3a0fc7baa 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: platform: ["ubuntu-latest", "macos-latest"] - ruby: ["3.2", "3.3", "3.4", "4.0"] + ruby: ["3.3", "3.4", "4.0"] runs-on: ${{ matrix.platform }} steps: - name: Set up Git repository diff --git a/.rubocop.yml b/.rubocop.yml index a98a1e801..115b1024e 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,5 +1,5 @@ AllCops: - TargetRubyVersion: 3.2 + TargetRubyVersion: 3.3 NewCops: enable Style/StringLiterals: diff --git a/ruby-macho.gemspec b/ruby-macho.gemspec index 281889fc6..ae809655e 100644 --- a/ruby-macho.gemspec +++ b/ruby-macho.gemspec @@ -10,7 +10,7 @@ Gem::Specification.new do |s| s.authors = ["William Woodruff"] s.email = "william@yossarian.net" s.files = Dir["LICENSE", "README.md", ".yardopts", "lib/**/*"] - s.required_ruby_version = ">= 3.2" + s.required_ruby_version = ">= 3.3" s.homepage = "https://github.com/Homebrew/ruby-macho" s.license = "MIT" s.metadata["rubygems_mfa_required"] = "true"