Skip to content

Commit 51f0ba0

Browse files
committed
feat: Drop support for Ruby 3.1 which has reached End of Life
1 parent a93bc3a commit 51f0ba0

4 files changed

Lines changed: 5 additions & 4 deletions

File tree

.github/workflows/main.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,9 @@ jobs:
1414
strategy:
1515
matrix:
1616
ruby:
17-
- '3.1.6'
1817
- '3.2.6'
1918
- '3.3.7'
20-
- '3.4.1'
19+
- '3.4.7'
2120

2221
steps:
2322
- uses: actions/checkout@v4

.rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ require:
33
- rubocop-rspec
44

55
AllCops:
6-
TargetRubyVersion: 3.1
6+
TargetRubyVersion: 3.2
77
NewCops: enable
88

99
Layout/LineContinuationLeadingSpace:

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
- feat: Drop support for Ruby 3.1 which has reached End of Life
2+
13
## v1.3.0 (10 February 2025)
24

35
- feat: Add config option to hide message about building and pushing the .gem file to rubygems.org

semantic_release.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Gem::Specification.new do |spec|
1515
DESCRIPTION
1616
spec.homepage = "https://github.com/ukdave/semantic_release"
1717
spec.license = "MIT"
18-
spec.required_ruby_version = ">= 3.1.0"
18+
spec.required_ruby_version = ">= 3.2.0"
1919

2020
spec.metadata["homepage_uri"] = spec.homepage
2121
spec.metadata["source_code_uri"] = "https://github.com/ukdave/semantic_release"

0 commit comments

Comments
 (0)