diff --git a/.github/workflows/active-record-multi-tenant-tests.yml b/.github/workflows/active-record-multi-tenant-tests.yml index 4912398..ffe3298 100644 --- a/.github/workflows/active-record-multi-tenant-tests.yml +++ b/.github/workflows/active-record-multi-tenant-tests.yml @@ -47,12 +47,11 @@ jobs: - '3.0' - '3.1' - '3.2' + - '3.3' appraisal: - - rails-6.0 - rails-6.1 - rails-7.0 - rails-7.1 - - active-record-6.0 - active-record-6.1 - active-record-7.0 - active-record-7.1 diff --git a/Appraisals b/Appraisals index 7b1f908..7c7c3ae 100644 --- a/Appraisals +++ b/Appraisals @@ -1,9 +1,5 @@ # frozen_string_literal: true -appraise 'rails-6.0' do - gem 'rails', '~> 6.0.3' -end - appraise 'rails-6.1' do gem 'rails', '~> 6.1.0' end @@ -16,10 +12,6 @@ appraise 'rails-7.1' do gem 'rails', '~> 7.1.0' end -appraise 'active-record-6.0' do - gem 'activerecord', '~> 6.0.3' -end - appraise 'active-record-6.1' do gem 'activerecord', '~> 6.1.0' end diff --git a/README.md b/README.md index 34e97d8..667b908 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ gem 'activerecord-multi-tenant' ## Supported Rails versions -All Ruby on Rails versions starting with 6.0 or newer (up to 7.0) are supported. +All Ruby on Rails versions starting with 6.1 or newer (up to 7.1) are supported. This gem only supports ActiveRecord (the Rails default ORM), and not alternative ORMs like Sequel. diff --git a/activerecord-multi-tenant.gemspec b/activerecord-multi-tenant.gemspec index 0811991..e9e6805 100644 --- a/activerecord-multi-tenant.gemspec +++ b/activerecord-multi-tenant.gemspec @@ -19,7 +19,7 @@ Gem::Specification.new do |spec| spec.homepage = 'https://github.com/citusdata/activerecord-multi-tenant' spec.license = 'MIT' - spec.add_dependency 'rails', '>= 6' + spec.add_dependency 'rails', '>= 6.1' spec.add_development_dependency 'anbt-sql-formatter' spec.add_development_dependency 'codecov' diff --git a/docs/source/getting-started.rst b/docs/source/getting-started.rst index f6aeb12..9191fa8 100644 --- a/docs/source/getting-started.rst +++ b/docs/source/getting-started.rst @@ -32,6 +32,6 @@ Dependencies ``activerecord-multi-tenant`` requires: - Ruby version 3.0.0 or later -- Rails version 6.0.0 or later +- Rails version 6.1.0 or later Please ensure that your application meets these requirements before installing the gem. diff --git a/docs/source/troubleshooting.rst b/docs/source/troubleshooting.rst index 3fb791d..91426bb 100644 --- a/docs/source/troubleshooting.rst +++ b/docs/source/troubleshooting.rst @@ -31,7 +31,7 @@ FAQs and Known Limitations **Q: Does ``activerecord-multi-tenant`` support Rails version 5.X?** -**A:** ``activerecord-multi-tenant`` supports Rails 6.0.0 and later. For older versions of Rails, please use the appropriate version of the gem. +**A:** ``activerecord-multi-tenant`` supports Rails 6.1.0 and later. For older versions of Rails, please use the appropriate version of the gem.