Skip to content

Commit

Permalink
Add support for bolt 4.x (#529)
Browse files Browse the repository at this point in the history
  • Loading branch information
bastelfreak authored Dec 12, 2024
1 parent 66567dc commit ecb07cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion functions/assert_supported_bolt_version.pp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
function peadm::assert_supported_bolt_version (
# No arguments
) >> Struct[{ 'supported' => Boolean }] {
$supported_bolt_version = '>= 3.17.0 < 4.0.0'
$supported_bolt_version = '>= 3.17.0 < 5.0.0'
$supported = (peadm::bolt_version() =~ SemVerRange($supported_bolt_version))
# lint:ignore:strict_indent
unless $supported {
Expand Down

0 comments on commit ecb07cc

Please sign in to comment.