File tree Expand file tree Collapse file tree 3 files changed +9
-6
lines changed Expand file tree Collapse file tree 3 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -139,8 +139,8 @@ workflows:
139
139
- scalajs_job :
140
140
name : sjs1.0_2.12
141
141
scala_version : 2.12.10
142
- scalajs_version : 1.0.0
142
+ scalajs_version : 1.0.1
143
143
- scalajs_job :
144
144
name : sjs1.0_2.13
145
145
scala_version : 2.13.1
146
- scalajs_version : 1.0.0
146
+ scalajs_version : 1.0.1
Original file line number Diff line number Diff line change 12
12
env :
13
13
- SCALAJS_VERSION= ADOPTOPENJDK=8
14
14
- SCALAJS_VERSION=0.6.32 ADOPTOPENJDK=8
15
- - SCALAJS_VERSION=1.0.0 ADOPTOPENJDK=8
15
+ - SCALAJS_VERSION=1.0.1 ADOPTOPENJDK=8
16
16
- SCALAJS_VERSION= ADOPTOPENJDK=11
17
17
- SCALAJS_VERSION= ADOPTOPENJDK=13
18
18
@@ -21,7 +21,7 @@ matrix:
21
21
- scala : 0.22.0-RC1
22
22
env : SCALAJS_VERSION=0.6.32 ADOPTOPENJDK=8
23
23
- scala : 0.22.0-RC1
24
- env : SCALAJS_VERSION=1.0.0 ADOPTOPENJDK=8
24
+ env : SCALAJS_VERSION=1.0.1 ADOPTOPENJDK=8
25
25
26
26
install :
27
27
- git fetch --tags # get all tags for sbt-dynver
Original file line number Diff line number Diff line change @@ -43,8 +43,9 @@ lazy val xml = crossProject(JSPlatform, JVMPlatform)
43
43
scalacOptions in Test += " -Xxml:coalescing" ,
44
44
45
45
scalaModuleMimaPreviousVersion := {
46
- if (System .getenv(" SCALAJS_VERSION" ) == " 1.0.0" ) None // No such release yet
47
- else Some (" 1.2.0" )
46
+ if (isDotty.value) None // No such release yet
47
+ // else if (System.getenv("SCALAJS_VERSION") == "1.0.0") None
48
+ else Some (" 1.3.0" )
48
49
},
49
50
mimaBinaryIssueFilters ++= {
50
51
import com .typesafe .tools .mima .core ._
@@ -161,6 +162,8 @@ lazy val xml = crossProject(JSPlatform, JVMPlatform)
161
162
}
162
163
)
163
164
.jsSettings(
165
+ // The config for Travis has an exclude, but sbt-travisci doesn't catch it.
166
+ crossScalaVersions -= " 0.22.0-RC1" ,
164
167
// Scala.js cannot run forked tests
165
168
fork in Test := false
166
169
)
You can’t perform that action at this time.
0 commit comments