From 335f52084294df0888201708c7d4c7d21897e4ea Mon Sep 17 00:00:00 2001 From: Alexandre Archambault Date: Mon, 28 Nov 2022 10:21:01 +0100 Subject: [PATCH] Add back 1.11 support --- .github/workflows/ci.yml | 6 +++--- build.sc | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 36b8e02..832f17b 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", "1.12.0"] + scalaJsVersion: ["1.9.0", "1.10.0", "1.10.1", "1.11.0", "1.12.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", "1.12.0"] + scalaJsVersion: ["1.9.0", "1.10.0", "1.10.1", "1.11.0", "1.12.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", "1.12.0"] + scalaJsVersion: ["1.9.0", "1.10.0", "1.10.1", "1.11.0", "1.12.0"] steps: - uses: actions/checkout@v2 with: diff --git a/build.sc b/build.sc index 65103dc..8abe587 100644 --- a/build.sc +++ b/build.sc @@ -19,7 +19,7 @@ import scala.util.Properties.isWin def scalaJsCliVersion = "1.1.1-sc5" def scala213 = "2.13.8" def latestScalaJsVersion = "1.12.0" -def scalaJsVersions = Seq("1.9.0", "1.10.0", "1.10.1", latestScalaJsVersion) +def scalaJsVersions = Seq("1.9.0", "1.10.0", "1.10.1", "1.11.0", latestScalaJsVersion) object cli extends Cross[Cli](scalaJsVersions: _*)