Skip to content

Commit 1310dcf

Browse files
committed
Drop support for EOL Ruby 3.2
1 parent f49236e commit 1310dcf

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
strategy:
3737
fail-fast: false
3838
matrix:
39-
ruby-version: ["3.2", "3.3", "3.4", "4.0"]
39+
ruby-version: ["3.3", "3.4", "4.0"]
4040
active-record-version-env:
4141
- ACTIVE_RECORD_VERSION="~> 7.2.0"
4242
- ACTIVE_RECORD_VERSION="~> 8.0.0"

.standard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ruby_version: 3.2
1+
ruby_version: 3.3
22

33
plugins:
44
- standard-performance

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Read the blog post introducing PgSearch at https://tanzu.vmware.com/content/blog
1313

1414
## REQUIREMENTS
1515

16-
- Ruby 3.2+
16+
- Ruby 3.3+
1717
- Active Record 7.2+
1818
- PostgreSQL 9.2+
1919
- [PostgreSQL extensions](https://github.com/Casecommons/pg_search/wiki/Installing-PostgreSQL-Extensions) for certain features

pg_search.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ Gem::Specification.new do |s|
2121
s.add_dependency "activerecord", ">= 7.2"
2222
s.add_dependency "activesupport", ">= 7.2"
2323

24-
s.required_ruby_version = ">= 3.2"
24+
s.required_ruby_version = ">= 3.3"
2525
end

0 commit comments

Comments
 (0)