Skip to content

Commit 4f95750

Browse files
committed
Update dotty to scala 3.0.0-M1
1 parent 59fcfae commit 4f95750

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import: scala/scala-dev:travis/default.yml
55
language: scala
66

77
scala:
8-
- 0.27.0-RC1
8+
- 3.0.0-M1
99
- 2.11.12
1010
- 2.12.12
1111
- 2.13.3
@@ -17,7 +17,7 @@ env:
1717

1818
matrix:
1919
exclude:
20-
- scala: 0.27.0-RC1
20+
- scala: 3.0.0-M1
2121
env: ADOPTOPENJDK=8 SCALAJS_VERSION=1.3.0
2222
include:
2323
- scala: 2.11.12

build.sbt

+3-3
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@ lazy val parserCombinators = crossProject(JVMPlatform, JSPlatform, NativePlatfor
6060
Compile / unmanagedSourceDirectories ++= {
6161
(Compile / unmanagedSourceDirectories).value.map { dir =>
6262
CrossVersion.partialVersion(scalaVersion.value) match {
63-
case Some((2, 13)) => file(dir.getPath ++ "-2.13+")
64-
case Some((0, _)) => file(dir.getPath ++ "-2.13+")
65-
case _ => file(dir.getPath ++ "-2.13-")
63+
case Some((2, 13)) => file(dir.getPath ++ "-2.13+")
64+
case Some((3, _)) => file(dir.getPath ++ "-2.13+")
65+
case _ => file(dir.getPath ++ "-2.13-")
6666
}
6767
}
6868
}

0 commit comments

Comments
 (0)