Skip to content

Cleanup for release 2.1.0 #598

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 4, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 1 addition & 10 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,7 @@ lazy val xml = crossProject(JSPlatform, JVMPlatform, NativePlatform)
|additional information regarding copyright ownership.
|""".stripMargin)),

// Note: Change back to BinaryAndSourceCompatible after 2.1.0 release
versionPolicyIntention := Compatibility.BinaryCompatible,
versionPolicyIntention := Compatibility.BinaryAndSourceCompatible,
// Note: See discussion on non-JVM Mima in https://github.com/scala/scala-xml/pull/517
mimaBinaryIssueFilters ++= {
import com.typesafe.tools.mima.core._
Expand Down Expand Up @@ -141,14 +140,6 @@ lazy val xml = crossProject(JSPlatform, JVMPlatform, NativePlatform)
.jsEnablePlugins(ScalaJSJUnitPlugin)
.nativeSettings(
crossScalaVersions := Seq("2.13.8", "2.12.15", "3.1.1"),
mimaPreviousArtifacts := {
// TODO remove this setting when 2.0.2 released
if (scalaBinaryVersion.value == "3") {
mimaPreviousArtifacts.value.filterNot(_.revision == "2.0.1")
} else {
mimaPreviousArtifacts.value
}
},
// Scala Native cannot run forked tests
Test / fork := false,
libraryDependencies += "org.scala-native" %%% "junit-runtime" % nativeVersion % Test,
Expand Down