Skip to content

Commit

Permalink
Add back 1.11 support (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexarchambault authored Nov 28, 2022
1 parent c40803e commit e2db8cf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -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: _*)

Expand Down

0 comments on commit e2db8cf

Please sign in to comment.