Skip to content

Commit 193be1d

Browse files
committed
Minimum Ruby version is 3.2
Remove EOL Ruby versions.
1 parent 8e8bf6b commit 193be1d

File tree

5 files changed

+11
-13
lines changed

5 files changed

+11
-13
lines changed

.github/workflows/psl-update.yml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,29 +9,21 @@ jobs:
99
update:
1010
runs-on: ubuntu-latest
1111
steps:
12-
1312
- name: Checkout
1413
uses: actions/checkout@v5
15-
1614
- name: Set up Ruby
1715
uses: ruby/setup-ruby@v1
18-
with:
19-
ruby-version: "3.3"
20-
bundler-cache: true
21-
2216
- name: Update PSL
2317
run: bundle exec rake update-list
24-
2518
- name: Create Pull Request
26-
uses: peter-evans/create-pull-request@v7
19+
uses: peter-evans/create-pull-request@v7.0.8
2720
with:
2821
title: PSL auto-update
2922
commit-message: Updated list from source
3023
reviewers: weppos
3124
labels: psl
3225
add-paths: |
3326
data/list.txt
34-
3527
- name: Check Pull Request
3628
if: ${{ steps.cpr.outputs.pull-request-number }}
3729
run: |

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
- uses: actions/checkout@v5
1414
- name: Release Gem
15-
uses: cadwallion/publish-rubygems-action@94a6f4cd5350581749c569b5001eecc864e3ad0b
15+
uses: cadwallion/publish-rubygems-action@v1.1.0
1616
env:
1717
RUBYGEMS_API_KEY: ${{ secrets.RUBYGEMS_API_KEY }}
1818
RELEASE_COMMAND: rake release

.github/workflows/tests.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ jobs:
1010
strategy:
1111
matrix:
1212
ruby-version:
13-
- "3.0"
14-
- "3.1"
1513
- "3.2"
1614
- "3.3"
1715
- "3.4"

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
This project uses [Semantic Versioning 2.0.0](https://semver.org/).
44

55

6+
## next
7+
8+
### Changed
9+
10+
- Updated definitions.
11+
- Minimum Ruby version is 3.2
12+
13+
614
## 6.0.2
715

816
### Changed

public_suffix.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Gem::Specification.new do |s|
1212
s.description = "PublicSuffix can parse and decompose a domain name into top level domain, domain and subdomains."
1313
s.homepage = "https://simonecarletti.com/code/publicsuffix-ruby"
1414
s.licenses = ["MIT"]
15-
s.required_ruby_version = ">= 3.0"
15+
s.required_ruby_version = ">= 3.2"
1616

1717
s.metadata = {
1818
"bug_tracker_uri" => "https://github.com/weppos/publicsuffix-ruby/issues",

0 commit comments

Comments
 (0)