From a7f75862e34cac1eebb56eb0b011f638b5f90d49 Mon Sep 17 00:00:00 2001 From: Marek Moryl Date: Wed, 9 Nov 2022 14:07:34 +0100 Subject: [PATCH] Update Scala.js to 1.11.0 --- .github/workflows/ci.yml | 6 +++--- build.sc | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d40e45b..7dcec4b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,7 +51,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, windows-latest, macos-latest] - scalaJsVersion: ["1.9.0", "1.10.0", "1.10.1"] + scalaJsVersion: ["1.9.0", "1.10.0", "1.10.1", "1.11.0"] steps: - uses: actions/checkout@v2 with: @@ -95,7 +95,7 @@ jobs: strategy: fail-fast: false matrix: - scalaJsVersion: ["1.9.0", "1.10.0", "1.10.1"] + scalaJsVersion: ["1.9.0", "1.10.0", "1.10.1", "1.11.0"] steps: - uses: actions/checkout@v2 with: @@ -129,7 +129,7 @@ jobs: strategy: fail-fast: false matrix: - scalaJsVersion: ["1.9.0", "1.10.0", "1.10.1"] + scalaJsVersion: ["1.9.0", "1.10.0", "1.10.1", "1.11.0"] steps: - uses: actions/checkout@v2 with: diff --git a/build.sc b/build.sc index f056213..191d1f4 100644 --- a/build.sc +++ b/build.sc @@ -16,8 +16,8 @@ import scala.util.Properties.isWin def scalaJsCliVersion = "1.1.1-sc5" def scala213 = "2.13.8" -def latestScalaJsVersion = "1.10.1" -def scalaJsVersions = Seq("1.9.0", "1.10.0", latestScalaJsVersion) +def latestScalaJsVersion = "1.11.0" +def scalaJsVersions = Seq("1.9.0", "1.10.0", "1.10.1", latestScalaJsVersion) object cli extends Cross[Cli](scalaJsVersions: _*)