Skip to content

Commit 436f8a1

Browse files
authored
Merge pull request scala-js#318 from sjrd/upgrades
Upgrades
2 parents 6c88d85 + 5183fd2 commit 436f8a1

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed

.travis.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,16 @@ scala:
88
- 2.10.7
99
- 2.11.12
1010
- 2.12.4
11-
- 2.13.0-M2
11+
- 2.13.0-M3
1212
jdk:
1313
- oraclejdk8
1414
env:
15-
- SCALAJS_VERSION=0.6.21
16-
- SCALAJS_VERSION=1.0.0-M1
17-
- SCALAJS_VERSION=1.0.0-M2
15+
- SCALAJS_VERSION=0.6.22
16+
- SCALAJS_VERSION=1.0.0-M3
17+
matrix:
18+
exclude:
19+
- scala: 2.10.7
20+
env: SCALAJS_VERSION=1.0.0-M3
1821

1922
cache:
2023
directories:

build.sbt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@ lazy val root = project.in(file(".")).
55

66
name := "Scala.js DOM"
77

8-
crossScalaVersions in ThisBuild := Seq("2.12.4", "2.11.12", "2.10.7", "2.13.0-M2")
8+
crossScalaVersions in ThisBuild := {
9+
if (scalaJSVersion.startsWith("1.")) Seq("2.12.4", "2.11.12", "2.13.0-M3")
10+
else Seq("2.12.4", "2.11.12", "2.10.7", "2.13.0-M3")
11+
}
912
scalaVersion in ThisBuild := crossScalaVersions.value.head
1013

1114
val commonSettings = Seq(

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=0.13.16
1+
sbt.version=0.13.17

project/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
val scalaJSVersion =
2-
Option(System.getenv("SCALAJS_VERSION")).getOrElse("0.6.21")
2+
Option(System.getenv("SCALAJS_VERSION")).getOrElse("0.6.22")
33

44
addSbtPlugin("org.scala-js" % "sbt-scalajs" % scalaJSVersion)
55

0 commit comments

Comments
 (0)