11import sbtcrossproject .{crossProject , CrossType }
22import ScalaModulePlugin ._
33
4- crossScalaVersions in ThisBuild := List (" 2.12.8 " , " 2.11.12" , " 2.13.0 " )
4+ crossScalaVersions in ThisBuild := List (" 2.12.10 " , " 2.11.12" , " 2.13.1 " )
55
66lazy val xml = crossProject(JSPlatform , JVMPlatform )
77 .withoutSuffixFor(JVMPlatform )
@@ -11,7 +11,7 @@ lazy val xml = crossProject(JSPlatform, JVMPlatform)
1111 .jvmSettings(scalaModuleSettingsJVM)
1212 .settings(
1313 name := " scala-xml" ,
14- version := " 1.2.1 -SNAPSHOT" ,
14+ version := " 1.3.0 -SNAPSHOT" ,
1515
1616 // this line could be removed after https://github.com/scala/sbt-scala-module/issues/48 is fixed
1717 licenses := Seq ((" Apache-2.0" , url(" https://www.apache.org/licenses/LICENSE-2.0" ))),
@@ -22,7 +22,7 @@ lazy val xml = crossProject(JSPlatform, JVMPlatform)
2222 scalacOptions in Test += " -Xxml:coalescing" ,
2323
2424 mimaPreviousVersion := {
25- if (System .getenv(" SCALAJS_VERSION" ) == " 1.0.0-M8 " ) None // No such release yet
25+ if (System .getenv(" SCALAJS_VERSION" ) == " 1.0.0" ) None
2626 else Some (" 1.2.0" )
2727 },
2828
@@ -62,9 +62,9 @@ lazy val xml = crossProject(JSPlatform, JVMPlatform)
6262 .jvmSettings(
6363 OsgiKeys .exportPackage := Seq (s " scala.xml.*;version= ${version.value}" ),
6464
65- libraryDependencies += " junit" % " junit" % " 4.12 " % " test" ,
65+ libraryDependencies += " junit" % " junit" % " 4.13 " % " test" ,
6666 libraryDependencies += " com.novocode" % " junit-interface" % " 0.11" % " test" ,
67- libraryDependencies += " org.apache.commons" % " commons-lang3" % " 3.5 " % " test" ,
67+ libraryDependencies += " org.apache.commons" % " commons-lang3" % " 3.9 " % " test" ,
6868 libraryDependencies += (" org.scala-lang" % " scala-compiler" % scalaVersion.value % " test" ).exclude(" org.scala-lang.modules" , s " scala-xml_ ${scalaBinaryVersion.value}" )
6969 )
7070 .jsSettings(
0 commit comments