Skip to content

Commit e40e68f

Browse files
committed
Fix MiMa filters after release of 3.0.1
1 parent 40b8dc5 commit e40e68f

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

project/MiMaFilters.scala

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ import com.typesafe.tools.mima.core.ProblemFilters._
44

55
object MiMaFilters {
66
val Library: Seq[ProblemFilter] = Seq(
7+
// Internals added in 3.0.2
8+
exclude[MissingClassProblem]("scala.annotation.internal.ProvisionalSuperClass"),
79

10+
// New APIs marked @experimental in 3.0.2
11+
exclude[MissingClassProblem]("scala.Selectable$WithoutPreciseParameterTypes")
812
)
913
}

0 commit comments

Comments
 (0)