Skip to content

Commit 28d9e3c

Browse files
authored
Merge pull request #503 from SethTisue/scala-3.0.0-RC2
2 parents 916e48f + 987d686 commit 28d9e3c

File tree

5 files changed

+29
-51
lines changed

5 files changed

+29
-51
lines changed

.circleci/config.yml

+6-21
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@ executors:
77
scala_jdk11_executor:
88
docker:
99
- image: circleci/openjdk:11-jdk
10-
scala_jdk15_executor:
11-
docker:
12-
- image: circleci/openjdk:15-buster
1310
scala_jdk16_executor:
1411
docker:
1512
- image: circleci/openjdk:16-buster
@@ -119,13 +116,13 @@ workflows:
119116
java_version: jdk8
120117
scala_version: 2.13.5
121118
- scala_job:
122-
name: 3.0.0-RC1
119+
name: 3.0.0-RC2
123120
java_version: jdk8
124-
scala_version: 3.0.0-RC1
121+
scala_version: 3.0.0-RC2
125122
- scala_job:
126-
name: 3.0.0-M3
123+
name: 3.0.0-RC1
127124
java_version: jdk8
128-
scala_version: 3.0.0-M3
125+
scala_version: 3.0.0-RC1
129126
- scala_job:
130127
name: jdk11_2.12
131128
java_version: jdk11
@@ -137,19 +134,7 @@ workflows:
137134
- scala_job:
138135
name: jdk11_3.0
139136
java_version: jdk11
140-
scala_version: 3.0.0-RC1
141-
- scala_job:
142-
name: jdk15_2.12
143-
java_version: jdk15
144-
scala_version: 2.12.13
145-
- scala_job:
146-
name: jdk15_2.13
147-
java_version: jdk15
148-
scala_version: 2.13.5
149-
- scala_job:
150-
name: jdk15_3.0
151-
java_version: jdk15
152-
scala_version: 3.0.0-RC1
137+
scala_version: 3.0.0-RC2
153138
- scala_job:
154139
name: jdk16_2.12
155140
java_version: jdk16
@@ -161,7 +146,7 @@ workflows:
161146
- scala_job:
162147
name: jdk16_3.0
163148
java_version: jdk16
164-
scala_version: 3.0.0-RC1
149+
scala_version: 3.0.0-RC2
165150
- scalajs_job:
166151
name: sjs1.0_2.12
167152
scala_version: 2.12.13

.travis.yml

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

77
scala:
8+
- 3.0.0-RC2
89
- 3.0.0-RC1
9-
- 3.0.0-M3
1010
- 2.12.13
1111
- 2.13.5
1212

@@ -15,14 +15,14 @@ env:
1515
- SCALAJS_VERSION=1.5.0 ADOPTOPENJDK=8
1616
- SCALANATIVE_VERSION=0.4.0 ADOPTOPENJDK=8
1717
- SCALAJS_VERSION= ADOPTOPENJDK=11
18-
- SCALAJS_VERSION= ADOPTOPENJDK=15
18+
- SCALAJS_VERSION= ADOPTOPENJDK=16
1919

2020
jobs:
2121
exclude:
22-
- scala: 3.0.0-M3
23-
env: SCALANATIVE_VERSION=0.4.0 ADOPTOPENJDK=8
2422
- scala: 3.0.0-RC1
2523
env: SCALANATIVE_VERSION=0.4.0 ADOPTOPENJDK=8
24+
- scala: 3.0.0-RC2
25+
env: SCALANATIVE_VERSION=0.4.0 ADOPTOPENJDK=8
2626

2727
install:
2828
- git fetch --tags # get all tags for sbt-dynver

build.sbt

+18-24
Original file line numberDiff line numberDiff line change
@@ -32,23 +32,17 @@ lazy val xml = crossProject(JSPlatform, JVMPlatform, NativePlatform)
3232
.jvmSettings(ScalaModulePlugin.scalaModuleOsgiSettings)
3333
.settings(
3434
name := "scala-xml",
35-
scalacOptions ++= {
36-
val opts =
37-
if (isDotty.value)
38-
"-language:Scala2"
39-
else
40-
// Compiler team advised avoiding the -Xsource:2.14 option for releases.
41-
// The output with -Xsource should be periodically checked, though.
42-
"-deprecation:false -feature -Xlint:-stars-align,-nullary-unit,_"
43-
opts.split("\\s+").to[Seq]
44-
},
35+
scalacOptions ++= (CrossVersion.partialVersion(scalaVersion.value) match {
36+
case Some((3, _)) =>
37+
Seq("-language:Scala2")
38+
case _ =>
39+
// Compiler team advised avoiding the -Xsource:2.14 option for releases.
40+
// The output with -Xsource should be periodically checked, though.
41+
Seq("-deprecation:false", "-feature", "-Xlint:-stars-align,-nullary-unit,_")
42+
}),
4543

4644
Test / scalacOptions += "-Xxml:coalescing",
4745

48-
// don't run Dottydoc, it errors and isn't needed anyway.
49-
// but we leave `publishArtifact` set to true, otherwise Sonatype won't let us publish
50-
Compile / doc / sources := (if (isDotty.value) Seq() else (Compile / doc/ sources).value),
51-
5246
headerLicense := Some(HeaderLicense.Custom(
5347
s"""|Scala (https://www.scala-lang.org)
5448
|
@@ -61,11 +55,11 @@ lazy val xml = crossProject(JSPlatform, JVMPlatform, NativePlatform)
6155
|additional information regarding copyright ownership.
6256
|""".stripMargin)),
6357

64-
scalaModuleMimaPreviousVersion := {
58+
scalaModuleMimaPreviousVersion := (CrossVersion.partialVersion(scalaVersion.value) match {
6559
// pending resolution of https://github.com/scalacenter/sbt-version-policy/issues/62
66-
if (isDotty.value) None
67-
else Some("2.0.0-M5")
68-
},
60+
case Some((3, _)) => None
61+
case _ => Some("2.0.0-M5")
62+
}),
6963
mimaBinaryIssueFilters ++= {
7064
import com.typesafe.tools.mima.core._
7165
import com.typesafe.tools.mima.core.ProblemFilters._
@@ -74,8 +68,8 @@ lazy val xml = crossProject(JSPlatform, JVMPlatform, NativePlatform)
7468
exclude[DirectMissingMethodProblem]("scala.xml.Utility.escapeText"),
7569
// New MiMa checks for generic signature changes
7670
exclude[IncompatibleSignatureProblem]("*"),
77-
// afaict this is just a JDK 8 vs 15 difference, producing a false positive when
78-
// we compare classes built on JDK 15 (which we only do on CI, not at release time)
71+
// afaict this is just a JDK 8 vs 16 difference, producing a false positive when
72+
// we compare classes built on JDK 16 (which we only do on CI, not at release time)
7973
// to previous-version artifacts that were built on 8. see scala/scala-xml#501
8074
exclude[DirectMissingMethodProblem]("scala.xml.include.sax.XIncluder.declaration"),
8175
)
@@ -115,12 +109,12 @@ lazy val xml = crossProject(JSPlatform, JVMPlatform, NativePlatform)
115109
libraryDependencies += "junit" % "junit" % "4.13.2" % Test,
116110
libraryDependencies += "com.novocode" % "junit-interface" % "0.11" % Test,
117111
libraryDependencies += "org.apache.commons" % "commons-lang3" % "3.12.0" % Test,
118-
libraryDependencies ++= {
119-
if (isDotty.value)
112+
libraryDependencies ++= (CrossVersion.partialVersion(scalaVersion.value) match {
113+
case Some((3, _)) =>
120114
Seq()
121-
else
115+
case _ =>
122116
Seq(("org.scala-lang" % "scala-compiler" % scalaVersion.value % Test).exclude("org.scala-lang.modules", s"scala-xml_${scalaBinaryVersion.value}"))
123-
}
117+
}),
124118
)
125119
.jsSettings(
126120
// Scala.js cannot run forked tests

project/build.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.4.9
1+
sbt.version=1.5.0-RC2

project/plugins.sbt

-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,5 @@ addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.0.0")
99
addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.0.0")
1010
addSbtPlugin("org.scala-js" % "sbt-scalajs" % scalaJSVersion)
1111
addSbtPlugin("org.scala-native" % "sbt-scala-native" % scalaNativeVersion)
12-
addSbtPlugin("ch.epfl.lamp" % "sbt-dotty" % "0.5.3")
1312
addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.6.0")
1413
addSbtPlugin("ch.epfl.scala" % "sbt-version-policy" % "1.0.0-RC5")

0 commit comments

Comments
 (0)