Skip to content

Commit

Permalink
Drop support for EOL Ruby 3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nertzy committed Nov 10, 2024
1 parent a8f5fdb commit 1b1a7ff
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 7 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,16 +36,13 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby-version: ['3.0', '3.1', '3.2', '3.3']
ruby-version: ['3.1', '3.2', '3.3']
active-record-version-env:
- ACTIVE_RECORD_VERSION="~> 6.1.0"
- ACTIVE_RECORD_VERSION="~> 7.0.0"
- ACTIVE_RECORD_VERSION="~> 7.1.0"
- ACTIVE_RECORD_VERSION="~> 7.2.0"
allow-failure: [false]
exclude:
- ruby-version: '3.0'
active-record-version-env: ACTIVE_RECORD_VERSION="~> 7.2.0"
include:
- ruby-version: '3.3'
active-record-version-env: ACTIVE_RECORD_BRANCH="main"
Expand Down
2 changes: 1 addition & 1 deletion .standard.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ruby_version: 3.0
ruby_version: 3.1

plugins:
- standard-performance
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Read the blog post introducing PgSearch at https://tanzu.vmware.com/content/blog

## REQUIREMENTS

* Ruby 3.0+
* Ruby 3.1+
* Active Record 6.1+
* PostgreSQL 9.2+
* [PostgreSQL extensions](https://github.com/Casecommons/pg_search/wiki/Installing-PostgreSQL-Extensions) for certain features
Expand Down
2 changes: 1 addition & 1 deletion pg_search.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ Gem::Specification.new do |s|
s.add_dependency "activerecord", ">= 6.1"
s.add_dependency "activesupport", ">= 6.1"

s.required_ruby_version = ">= 3.0"
s.required_ruby_version = ">= 3.1"
end

0 comments on commit 1b1a7ff

Please sign in to comment.