We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 581a24c commit db54102Copy full SHA for db54102
scanner/src/main/kotlin/ScannerMatcher.kt
@@ -94,7 +94,7 @@ data class ScannerMatcher(
94
if (!nameRegex.matches(details.name)) return false
95
96
val version = Semver(details.version)
97
- return minVersion <= version && version < maxVersion &&
+ return version in minVersion..<maxVersion &&
98
(configuration == null || configuration == details.configuration)
99
}
100
0 commit comments