Skip to content

Commit f0b01d0

Browse files
committed
Use scala 2.13.0-M4 milestone release
1 parent cfc89b8 commit f0b01d0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ scala-xml
22
[![Travis](https://img.shields.io/travis/scala/scala-xml.svg)](https://travis-ci.org/scala/scala-xml)
33
[![latest release for 2.11](https://img.shields.io/maven-central/v/org.scala-lang.modules/scala-xml_2.11.svg?label=scala+2.11)](http://mvnrepository.com/artifact/org.scala-lang.modules/scala-xml_2.11)
44
[![latest release for 2.12](https://img.shields.io/maven-central/v/org.scala-lang.modules/scala-xml_2.12.svg?label=scala+2.12)](http://mvnrepository.com/artifact/org.scala-lang.modules/scala-xml_2.12)
5-
[![latest release for 2.13.0-M2](https://img.shields.io/maven-central/v/org.scala-lang.modules/scala-xml_2.13.0-M2.svg?label=scala+2.13.0-M2)](http://mvnrepository.com/artifact/org.scala-lang.modules/scala-xml_2.13.0-M2)
5+
[![latest release for 2.13.0-M4](https://img.shields.io/maven-central/v/org.scala-lang.modules/scala-xml_2.13.0-M4.svg?label=scala+2.13.0-M4)](http://mvnrepository.com/artifact/org.scala-lang.modules/scala-xml_2.13.0-M4)
66
[![Gitter](https://badges.gitter.im/Join+Chat.svg)](https://gitter.im/scala/scala-xml)
77
=========
88

Diff for: build.sbt

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import ScalaModulePlugin._
33
scalaVersionsByJvm in ThisBuild := {
44
val v211 = "2.11.12"
55
val v212 = "2.12.4"
6-
val v213 = "2.13.0-M3"
6+
val v213 = "2.13.0-M4"
77
Map(
88
6 -> List(v211 -> true),
99
7 -> List(v211 -> false),
@@ -31,7 +31,7 @@ lazy val xml = crossProject.in(file("."))
3131
(unmanagedSourceDirectories in Compile).value.map { dir =>
3232
val sv = scalaVersion.value
3333
CrossVersion.partialVersion(sv) match {
34-
case Some((2, 13)) if !sv.startsWith("2.13.0-M3") => file(dir.getPath ++ "-2.13") // TODO: remove M3 guard once M4 is out.
34+
case Some((2, 13)) => file(dir.getPath ++ "-2.13")
3535
case _ => file(dir.getPath ++ "-2.11-2.12")
3636
}
3737
}

0 commit comments

Comments
 (0)