Skip to content

Commit 914abe3

Browse files
a-moralesckipp01
authored andcommitted
add Scala 3.3.4 to check for support around excluded packages and files support
1 parent f2afa94 commit 914abe3

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ coverageExcludedFiles := ".*\\/two\\/GoodCoverage;.*\\/three\\/.*"
9494
**NOTE**: The `.scala` file extension needs to be omitted from the
9595
filename, if one is given.
9696

97-
**NOTE**: These two options only work for Scala2 and Scala 3.4.2+.
97+
**NOTE**: These two options only work for Scala2, Scala 3.3.4+ and Scala 3.4.2+.
9898

9999
You can also mark sections of code with comments like:
100100

src/main/scala/scoverage/ScoverageSbtPlugin.scala

+1
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ object ScoverageSbtPlugin extends AutoPlugin {
9595
.exists {
9696
case (3, minor) if minor > 4 => true
9797
case (3, minor) if (minor == 4 && patch.exists(_ >= 2)) => true
98+
case (3, minor) if (minor == 3 && patch.exists(_ >= 4)) => true
9899
case _ => false
99100
}
100101
}

0 commit comments

Comments
 (0)