From 103a6be41e49eeaaacda4302a74edb7a2f557465 Mon Sep 17 00:00:00 2001 From: Sebastian van Hesteren Date: Fri, 20 Dec 2024 14:05:39 +0100 Subject: [PATCH] Drop ruby 3.1 support --- .github/workflows/ci.yml | 3 ++- .rubocop.yml | 2 +- gouda.gemspec | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 176aa99..c016e67 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,8 @@ jobs: strategy: matrix: ruby: - - '3.1' + - '3.2' + - '3.3' services: postgres: image: postgres diff --git a/.rubocop.yml b/.rubocop.yml index 0499879..9ce0801 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,7 +1,7 @@ require: standard AllCops: - TargetRubyVersion: 3.1 + TargetRubyVersion: 3.2 inherit_gem: standard: config/base.yml diff --git a/gouda.gemspec b/gouda.gemspec index ada999f..0ca95bf 100644 --- a/gouda.gemspec +++ b/gouda.gemspec @@ -9,7 +9,7 @@ Gem::Specification.new do |spec| spec.email = ["sebastian@cheddar.me", "me@julik.nl"] spec.homepage = "https://github.com/cheddar-me/gouda" spec.license = "MIT" - spec.required_ruby_version = Gem::Requirement.new(">= 3.1.0") + spec.required_ruby_version = Gem::Requirement.new(">= 3.2.0") spec.require_paths = ["lib"] spec.metadata["homepage_uri"] = spec.homepage