Skip to content

Commit b08cbb1

Browse files
committed
increase minimum ruby version to 3.0
1 parent d5a47ed commit b08cbb1

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@ workflows:
3636
matrix:
3737
parameters:
3838
ruby-version:
39-
- '2.7'
39+
- '3.0'
4040
- '3.4'

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
strategy:
1919
matrix:
2020
ruby_version:
21-
- '2.7'
21+
- '3.0'
2222
- '3.4'
2323
runs-on: ubuntu-latest
2424
container: ruby:${{ matrix.ruby_version }}-slim

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
### 2.3.2 (Next)
1+
### 2.4.0 (Next)
22
- Fix `rubocop-performance` inclusion warning.
33
- Improve recognition of Ruby support files.
4+
- Minimum Ruby version increased to 3.0.
45

56
### 2.3.1
67
- No input target paths now defaults to current working directory instead of error.

puppet-check.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
1111
spec.executables = spec.files.grep(%r{^bin/}) { |file| File.basename(file) }
1212
spec.require_paths = Dir['lib']
1313

14-
spec.required_ruby_version = '>= 2.7.0'
14+
spec.required_ruby_version = '>= 3.0.0'
1515
spec.add_dependency 'puppet', '>= 5.5', '< 9'
1616
spec.add_dependency 'puppet-lint', '~> 4.0'
1717
spec.add_dependency 'reek', '~> 6.0'

0 commit comments

Comments
 (0)