Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: ['3.0', '3.1', '3.2', '3.3', '3.4']
ruby: ['3.3', '3.4']
env:
DANGER_SKIP_SWIFTLINT_INSTALL: 'YES'
steps:
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
AllCops:
TargetRubyVersion: 3.0
TargetRubyVersion: 3.4.5
NewCops: disable

# Disable linting of Dangerfile.
Expand Down
4 changes: 2 additions & 2 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Current Master

- Nothing yet!
- Dropped support for Ruby 3.0, 3.1, and 3.2. See [#216](https://github.com/ashfurrow/danger-ruby-swiftlint/pull/216)

## 0.37.5

Expand Down Expand Up @@ -35,7 +35,7 @@

## 0.35.0

- Updates Thor to 1.0.0.
- Updates Thor to 1.0.0.

## 0.34.0

Expand Down
4 changes: 1 addition & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@ group :development do
gem 'bundler'
gem 'mocha'
gem 'mocha-on-bacon'
# `parallel` 2.x requires Ruby >= 3.3 — keep it on 1.x so the matrix
# can still install on Ruby 3.0–3.2.
gem 'parallel', '< 2'
gem 'parallel'
gem 'prettybacon'
gem 'rubocop', '~> 1.50', require: false
end
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ GEM
sawyer (~> 0.9)
open4 (1.3.4)
ostruct (0.6.3)
parallel (1.28.0)
parallel (2.1.0)
parser (3.3.11.1)
ast (~> 2.4.1)
racc
Expand Down Expand Up @@ -168,7 +168,7 @@ DEPENDENCIES
listen (= 3.0.7)
mocha
mocha-on-bacon
parallel (< 2)
parallel
prettybacon
pry
rspec (~> 3.4)
Expand Down
2 changes: 1 addition & 1 deletion danger-swiftlint.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Gem::Specification.new do |spec|
spec.require_paths = ['lib']
spec.extensions = %w[ext/swiftlint/Rakefile]
spec.executables = ['danger-swiftlint']
spec.required_ruby_version = '>= 2.3'
spec.required_ruby_version = '>= 3.3'

spec.add_dependency 'danger'
spec.add_dependency 'rake', '> 10'
Expand Down
Loading