Skip to content

Commit 4c7a945

Browse files
committed
Use scala 2.13.0-M4 milestone release
1 parent 2d99e29 commit 4c7a945

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jdk:
1616
scala:
1717
- 2.11.12
1818
- 2.12.6
19-
- 2.13.0-M3
19+
- 2.13.0-M4
2020

2121
env:
2222
global:
@@ -46,7 +46,7 @@ matrix:
4646
jdk: openjdk11
4747
- scala: 2.12.6
4848
jdk: openjdk6
49-
- scala: 2.13.0-M3
49+
- scala: 2.13.0-M4
5050
jdk: openjdk6
5151

5252
script:

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import sbtcrossproject.{crossProject, CrossType}
22
import ScalaModulePlugin._
33

4-
crossScalaVersions in ThisBuild := List("2.12.6", "2.11.12", "2.13.0-M3")
4+
crossScalaVersions in ThisBuild := List("2.12.6", "2.11.12", "2.13.0-M4")
55

66
lazy val xml = crossProject(JSPlatform, JVMPlatform)
77
.withoutSuffixFor(JVMPlatform)
@@ -27,7 +27,7 @@ lazy val xml = crossProject(JSPlatform, JVMPlatform)
2727
(unmanagedSourceDirectories in Compile).value.map { dir =>
2828
val sv = scalaVersion.value
2929
CrossVersion.partialVersion(sv) match {
30-
case Some((2, 13)) if !sv.startsWith("2.13.0-M3") => file(dir.getPath ++ "-2.13") // TODO: remove M3 guard once M4 is out.
30+
case Some((2, 13)) => file(dir.getPath ++ "-2.13")
3131
case _ => file(dir.getPath ++ "-2.11-2.12")
3232
}
3333
}

0 commit comments

Comments
 (0)