From fcedfd5887075f55aa3cdb0edff7465881618c34 Mon Sep 17 00:00:00 2001 From: Eric Hayes Date: Tue, 15 Apr 2025 11:11:39 -0400 Subject: [PATCH 1/2] Allow Rails 8 --- .tool-versions | 2 +- annotate.gemspec | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.tool-versions b/.tool-versions index 9e83a384..a72ead61 100644 --- a/.tool-versions +++ b/.tool-versions @@ -1 +1 @@ -ruby 2.7.3 +ruby 3.4.3 diff --git a/annotate.gemspec b/annotate.gemspec index 43b2ac99..9f262572 100644 --- a/annotate.gemspec +++ b/annotate.gemspec @@ -23,7 +23,7 @@ Gem::Specification.new do |s| s.specification_version = 4 if s.respond_to? :specification_version s.add_runtime_dependency(%q, '>= 10.4', '< 14.0') - s.add_runtime_dependency(%q, ['>= 3.2', '< 8.0']) + s.add_runtime_dependency(%q, ['>= 3.2', '< 9.0']) s.metadata = { "bug_tracker_uri" => "https://github.com/ctran/annotate_models/issues/", From 5dd5a12018b509378ab33aabc52ca51820c15467 Mon Sep 17 00:00:00 2001 From: Eric Hayes Date: Tue, 15 Apr 2025 11:16:52 -0400 Subject: [PATCH 2/2] Change CI Ruby version --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7f907097..5e0851c2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: strategy: fail-fast: false matrix: - ruby: ['2.7'] + ruby: ['3.4'] steps: - name: Checkout