Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update scala-compiler, scala-library to 2.13.8 #588

Merged
merged 1 commit into from
Jan 17, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 6 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,9 @@ workflows:
java_version: jdk8
scala_version: 2.12.15
- scala_job:
name: 2.13.7
name: 2.13.8
java_version: jdk8
scala_version: 2.13.7
scala_version: 2.13.8
- scala_job:
name: 3.0.2
java_version: jdk8
Expand All @@ -114,7 +114,7 @@ workflows:
- scala_job:
name: jdk11_2.13
java_version: jdk11
scala_version: 2.13.7
scala_version: 2.13.8
- scala_job:
name: jdk11_3.0
java_version: jdk11
Expand All @@ -130,7 +130,7 @@ workflows:
- scala_job:
name: jdk17_2.13
java_version: jdk17
scala_version: 2.13.7
scala_version: 2.13.8
- scala_job:
name: jdk17_3.0
java_version: jdk17
Expand All @@ -144,7 +144,7 @@ workflows:
scala_version: 2.12.15
- scalajs_job:
name: sjs1.0_2.13
scala_version: 2.13.7
scala_version: 2.13.8
- scalajs_job:
name: sjs1.0_3
scala_version: 3.0.2
Expand All @@ -156,4 +156,4 @@ workflows:
scala_version: 2.12.15
- scalanative_job:
name: native0.4_2.13
scala_version: 2.13.7
scala_version: 2.13.8
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
fail-fast: false
matrix:
java: [8, 11, 17]
scala: [2.12.15, 2.13.7, 3.0.2, 3.1.0]
scala: [2.12.15, 2.13.8, 3.0.2, 3.1.0]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ lazy val xml = crossProject(JSPlatform, JVMPlatform, NativePlatform)
.settings(
name := "scala-xml",
scalaModuleAutomaticModuleName := Some("scala.xml"),
crossScalaVersions := Seq("2.13.7", "2.12.15", "3.0.2", "3.1.0"),
crossScalaVersions := Seq("2.13.8", "2.12.15", "3.0.2", "3.1.0"),
scalaVersion := "2.12.15",

// Don't publish for Scala 3.1 or later, only from 3.0
Expand Down Expand Up @@ -140,7 +140,7 @@ lazy val xml = crossProject(JSPlatform, JVMPlatform, NativePlatform)
)
.jsEnablePlugins(ScalaJSJUnitPlugin)
.nativeSettings(
crossScalaVersions := Seq("2.13.7", "2.12.15"),
crossScalaVersions := Seq("2.13.8", "2.12.15"),
// Scala Native cannot run forked tests
Test / fork := false,
libraryDependencies += "org.scala-native" %%% "junit-runtime" % nativeVersion % Test,
Expand Down