From 8c4c1803f07759177d4ed36d4673aff674114544 Mon Sep 17 00:00:00 2001 From: Wojciech Decker Date: Tue, 2 Nov 2021 13:13:47 +0100 Subject: [PATCH] add new scala versions --- .github/workflows/ci.yml | 2 +- appveyor.yml | 4 ++-- build.sbt | 5 ++++- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f02c424..c3ad7a3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: strategy: fail-fast: false matrix: - scalaversion: ["2.11.12", "2.12.10", "2.13.1"] + scalaversion: ["2.11.12", "2.12.15", "2.13.6"] scalajsversion: ["1.7.1"] steps: - uses: actions/checkout@v2 diff --git a/appveyor.yml b/appveyor.yml index f8f09cc..c99124c 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -5,8 +5,8 @@ environment: SCALAJS_VERSION: 1.7.1 matrix: - SCALA_VERSION: 2.11.12 - - SCALA_VERSION: 2.12.10 - - SCALA_VERSION: 2.13.1 + - SCALA_VERSION: 2.12.15 + - SCALA_VERSION: 2.13.6 install: - cmd: choco install sbt --version 1.5.5 -ia "INSTALLDIR=""C:\sbt""" - cmd: SET PATH=C:\sbt\bin;%JAVA_HOME%\bin;%PATH% diff --git a/build.sbt b/build.sbt index 5d5bd96..dd292e4 100644 --- a/build.sbt +++ b/build.sbt @@ -14,7 +14,7 @@ inThisBuild(Def.settings( version := "1.7.1-SNAPSHOT", organization := "org.scala-js", - crossScalaVersions := Seq("2.12.13", "2.11.12", "2.13.5"), + crossScalaVersions := Seq("2.11.12", "2.12.15", "2.13.6"), scalaVersion := crossScalaVersions.value.head, scalacOptions ++= Seq("-deprecation", "-feature", "-Xfatal-warnings"), @@ -35,12 +35,15 @@ inThisBuild(Def.settings( "2.12.11", "2.12.12", "2.12.13", + "2.12.14", + "2.12.15", "2.13.0", "2.13.1", "2.13.2", "2.13.3", "2.13.4", "2.13.5", + "2.13.6", ), homepage := Some(url("https://www.scala-js.org/")),