From 019da04495d775a794078cf306d14e191a519df7 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Fri, 30 Jun 2023 09:01:38 +0000 Subject: [PATCH] Update scalajs-linker to 1.13.2 --- .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 b7d73cd..b6ac0fa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,7 +51,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-20.04, windows-latest, macos-latest] - scalaJsVersion: ["1.9.0", "1.10.0", "1.10.1", "1.11.0", "1.12.0", "1.13.1"] + scalaJsVersion: ["1.9.0", "1.10.0", "1.10.1", "1.11.0", "1.12.0", "1.13.2"] steps: - uses: actions/checkout@v3 with: @@ -95,7 +95,7 @@ jobs: strategy: fail-fast: false matrix: - scalaJsVersion: ["1.9.0", "1.10.0", "1.10.1", "1.11.0", "1.12.0", "1.13.1"] + scalaJsVersion: ["1.9.0", "1.10.0", "1.10.1", "1.11.0", "1.12.0", "1.13.2"] steps: - uses: actions/checkout@v3 with: @@ -129,7 +129,7 @@ jobs: strategy: fail-fast: false matrix: - scalaJsVersion: ["1.9.0", "1.10.0", "1.10.1", "1.11.0", "1.12.0", "1.13.1"] + scalaJsVersion: ["1.9.0", "1.10.0", "1.10.1", "1.11.0", "1.12.0", "1.13.2"] steps: - uses: actions/checkout@v3 with: diff --git a/build.sc b/build.sc index 4bfe6ae..67ae485 100644 --- a/build.sc +++ b/build.sc @@ -18,7 +18,7 @@ import scala.util.Properties.isWin def scalaJsCliVersion = "1.1.1-sc5" def scala213 = "2.13.10" -def latestScalaJsVersion = "1.13.1" +def latestScalaJsVersion = "1.13.2" def scalaJsVersions = Seq("1.9.0", "1.10.0", "1.10.1", "1.11.0", "1.12.0", latestScalaJsVersion) object cli extends Cross[Cli](scalaJsVersions: _*)