Skip to content

Commit 3f39bdd

Browse files
authored
Merge pull request scala#641 from SethTisue/reenable-bincompat-check
fixes scala#617
2 parents fc55861 + 5371522 commit 3f39bdd

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

build.sbt

+3-2
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,7 @@ lazy val xml = crossProject(JSPlatform, JVMPlatform, NativePlatform)
6262
|additional information regarding copyright ownership.
6363
|""".stripMargin)),
6464

65-
// should be reverted to Compatibility.BinaryAndSourceCompatible after 2.2.0 is released
66-
versionPolicyIntention := Compatibility.None,
65+
versionPolicyIntention := Compatibility.BinaryCompatible,
6766
// Note: See discussion on non-JVM Mima in https://github.com/scala/scala-xml/pull/517
6867
mimaBinaryIssueFilters ++= {
6968
import com.typesafe.tools.mima.core._
@@ -135,6 +134,8 @@ lazy val xml = crossProject(JSPlatform, JVMPlatform, NativePlatform)
135134
)
136135
.jsEnablePlugins(ScalaJSJUnitPlugin)
137136
.nativeSettings(
137+
versionPolicyCheck / skip := true,
138+
versionCheck / skip := true,
138139
// Scala Native cannot run forked tests
139140
Test / fork := false,
140141
libraryDependencies += "org.scala-native" %%% "junit-runtime" % nativeVersion % Test,

0 commit comments

Comments
 (0)