diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 318d96c..59e37a6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,11 +10,7 @@ jobs: strategy: fail-fast: false matrix: - ruby-version: [3.2] - experimental: [false] - include: - - ruby-version: 3.3 - experimental: true + ruby-version: [3.2, 3.3] steps: - uses: actions/checkout@v4 with: diff --git a/.ruby-version b/.ruby-version index 34cde56..86fb650 100644 --- a/.ruby-version +++ b/.ruby-version @@ -1 +1 @@ -3.2.6 +3.3.7 diff --git a/lib/stator/version.rb b/lib/stator/version.rb index 75b6f82..f794628 100644 --- a/lib/stator/version.rb +++ b/lib/stator/version.rb @@ -3,8 +3,8 @@ module Stator MAJOR = 0 - MINOR = 6 - PATCH = 1 + MINOR = 7 + PATCH = 0 PRERELEASE = nil VERSION = [MAJOR, MINOR, PATCH, PRERELEASE].compact.join(".") diff --git a/stator.gemspec b/stator.gemspec index f28f175..f645bfd 100644 --- a/stator.gemspec +++ b/stator.gemspec @@ -18,4 +18,6 @@ Gem::Specification.new do |gem| gem.require_paths = ["lib"] gem.add_dependency 'activerecord', ">= 6.0" + + gem.required_ruby_version = ">= 3.2.0" end