Skip to content

Commit 3c64297

Browse files
authored
chore(deps): Support compliance_engine 0.2.x (#68)
Also test with Ruby 4.0
1 parent b23d1ae commit 3c64297

4 files changed

Lines changed: 9 additions & 4 deletions

File tree

.github/workflows/pr_tests.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,10 @@ jobs:
2727
strategy:
2828
matrix:
2929
ruby:
30-
- '3.2' # Puppet 8
30+
- '3.2' # Puppet/OpenVox 8
3131
- '3.3'
32-
- '3.4' # Latest
32+
- '3.4'
33+
- '4.0' # Latest
3334

3435
steps:
3536
- uses: actions/checkout@v6

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### 0.4.1 / 2026-01-26
2+
* Support compliance_engine 0.2.x
3+
* Test with Ruby 4.0
4+
15
### 0.4.0 / 2025-08-26
26
* Updates for recent rubocop and plugins
37
* Bump minimum required Ruby version to 3.2.0 (oldest version we're testing with)

lib/scelint/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Scelint
4-
VERSION = '0.4.0'
4+
VERSION = '0.4.1'
55
end

scelint.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ Gem::Specification.new do |spec|
2626

2727
spec.add_dependency 'deep_merge', '~> 1.2'
2828
spec.add_dependency 'thor', '~> 1.3'
29-
spec.add_dependency 'compliance_engine', '~> 0.1.0'
29+
spec.add_dependency 'compliance_engine', '>= 0.1.0', '< 0.3.0'
3030
end

0 commit comments

Comments
 (0)