We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2afa94 commit 914abe3Copy full SHA for 914abe3
README.md
@@ -94,7 +94,7 @@ coverageExcludedFiles := ".*\\/two\\/GoodCoverage;.*\\/three\\/.*"
94
**NOTE**: The `.scala` file extension needs to be omitted from the
95
filename, if one is given.
96
97
-**NOTE**: These two options only work for Scala2 and Scala 3.4.2+.
+**NOTE**: These two options only work for Scala2, Scala 3.3.4+ and Scala 3.4.2+.
98
99
You can also mark sections of code with comments like:
100
src/main/scala/scoverage/ScoverageSbtPlugin.scala
@@ -95,6 +95,7 @@ object ScoverageSbtPlugin extends AutoPlugin {
.exists {
case (3, minor) if minor > 4 => true
case (3, minor) if (minor == 4 && patch.exists(_ >= 2)) => true
+ case (3, minor) if (minor == 3 && patch.exists(_ >= 4)) => true
case _ => false
}
101
0 commit comments