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

Commit 9dff402

Browse files
committed
Prepare for release 1.0.12
- Bump sbt-scala-modules version (to get to a new version of MiMa) - 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 9dff402

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
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+
}

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
addSbtPlugin("org.scala-lang.modules" % "scala-module-plugin" % "1.0.3")
1+
addSbtPlugin("org.scala-lang.modules" % "scala-module-plugin" % "1.0.4")

0 commit comments

Comments
 (0)