From 9514462814c59103cf5ea493ce2d1c23f35f568d Mon Sep 17 00:00:00 2001 From: Grant Hutchins Date: Mon, 25 Dec 2023 13:31:10 -0600 Subject: [PATCH] Drop support for Active Record 6.0 Active Record 6.0 has been EOL since 2023-06-01 --- .github/workflows/ci.yml | 1 - README.md | 2 +- pg_search.gemspec | 4 ++-- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ae51dc2c..2f5b56f7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,7 +38,6 @@ jobs: matrix: ruby-version: ['3.0', '3.1', '3.2', '3.3'] active-record-version-env: - - ACTIVE_RECORD_VERSION="~> 6.0.0" - ACTIVE_RECORD_VERSION="~> 6.1.0" - ACTIVE_RECORD_VERSION="~> 7.0.0" - ACTIVE_RECORD_VERSION="~> 7.1.0" diff --git a/README.md b/README.md index 42aa3c91..4ccf1562 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Read the blog post introducing PgSearch at https://tanzu.vmware.com/content/blog ## REQUIREMENTS * Ruby 3.0+ -* Active Record 6.0+ +* Active Record 6.1+ * PostgreSQL 9.2+ * [PostgreSQL extensions](https://github.com/Casecommons/pg_search/wiki/Installing-PostgreSQL-Extensions) for certain features diff --git a/pg_search.gemspec b/pg_search.gemspec index 5b64f0c1..4a5fa0eb 100644 --- a/pg_search.gemspec +++ b/pg_search.gemspec @@ -18,8 +18,8 @@ Gem::Specification.new do |s| s.files = `git ls-files -z`.split("\x0") s.require_paths = ["lib"] - s.add_dependency "activerecord", ">= 6.0" - s.add_dependency "activesupport", ">= 6.0" + s.add_dependency "activerecord", ">= 6.1" + s.add_dependency "activesupport", ">= 6.1" s.required_ruby_version = ">= 3.0" end