From 59cf65a2bc975d722c138eba24c8544b9b022dfe Mon Sep 17 00:00:00 2001 From: Roch Lefebvre Date: Mon, 29 Jul 2024 19:42:44 -0400 Subject: [PATCH] Bump Ruby to 3.3.1; drop support for 3.0.x --- .github/workflows/ci.yml | 2 +- .ruby-version | 2 +- CHANGELOG.md | 2 ++ worldwide.gemspec | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d53c010b4..c232621ac 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: matrix: gemfile: - Gemfile - ruby: ["3.0", "3.1", "3.2"] + ruby: ["3.1", "3.2", "3.3"] env: BUNDLE_GEMFILE: ${{ matrix.gemfile }} steps: diff --git a/.ruby-version b/.ruby-version index be94e6f53..bea438e9a 100644 --- a/.ruby-version +++ b/.ruby-version @@ -1 +1 @@ -3.2.2 +3.3.1 diff --git a/CHANGELOG.md b/CHANGELOG.md index 646ef916f..f4ac3c4b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,6 +27,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## [Unreleased] +- Bump Ruby to 3.3.1; drop support for 3.0.x [#264](https://github.com/Shopify/worldwide/pull/264) + --- ## [1.7.5] = 2024-08-01 diff --git a/worldwide.gemspec b/worldwide.gemspec index ab1796f11..2e337985e 100644 --- a/worldwide.gemspec +++ b/worldwide.gemspec @@ -24,7 +24,7 @@ Gem::Specification.new do |spec| spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] - spec.required_ruby_version = ">= 3.0.0" + spec.required_ruby_version = ">= 3.1.0" spec.add_dependency("activesupport", ">= 7.0") spec.add_dependency("i18n")