Skip to content
This repository was archived by the owner on Sep 8, 2022. It is now read-only.

Commit b45e7ea

Browse files
committed
Prepare for release 1.0.12
- Bump the snapshot version - Bump the previous MiMa version to 1.0.11 - Add a filter for a MiMa error that has snuck through. The change itself seems harmless enough, the constructor that was removed is from a class that was effectively internal to partest's implementation. See #46
1 parent 87efa33 commit b45e7ea

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

build.sbt

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
import VersionKeys._
2+
import com.typesafe.tools.mima.core.{IncompatibleMethTypeProblem, ProblemFilters}
3+
import com.typesafe.tools.mima.plugin.MimaKeys
24

35
scalaModuleSettings
46

57
name := "scala-partest"
68

7-
version := "1.0.12-SNAPSHOT"
9+
version := "1.0.13-SNAPSHOT"
810

911
scalaVersion := crossScalaVersions.value.head
1012

@@ -57,4 +59,10 @@ libraryDependencies += "org.scala-lang" % "scala-reflect" % sca
5759

5860
libraryDependencies += "org.scala-lang" % "scala-compiler" % scalaVersion.value % "provided" intransitive()
5961

60-
mimaPreviousVersion := Some("1.0.10")
62+
mimaPreviousVersion := Some("1.0.11")
63+
64+
MimaKeys.binaryIssueFilters ++= {
65+
import com.typesafe.tools.mima.core._
66+
import com.typesafe.tools.mima.core.ProblemFilters._
67+
Seq(exclude[IncompatibleMethTypeProblem]("scala.tools.partest.nest.TestSettings.this"))
68+
}

0 commit comments

Comments
 (0)