From 00f9b94505730c4a4aa35be30f504886f8251c03 Mon Sep 17 00:00:00 2001 From: Docusaurus bot Date: Sat, 2 Jul 2022 15:50:36 +0200 Subject: [PATCH] Remove Scala 3.0.2 build. Update remaining Scala versions. --- .github/workflows/ci.yml | 2 +- .mergify.yml | 4 ++-- build.sbt | 5 ++--- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fcc47066..8f777e6a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.12.16, 2.13.8, 3.0.2, 3.1.1] + scala: [2.12.16, 2.13.8, 3.1.3] java: [temurin@8, temurin@17] runs-on: ${{ matrix.os }} steps: diff --git a/.mergify.yml b/.mergify.yml index 69015f4f..65979e1a 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -15,8 +15,8 @@ pull_request_rules: - status-success=Build and Test (ubuntu-latest, 2.12.16, temurin@17) - status-success=Build and Test (ubuntu-latest, 2.13.8, temurin@8) - status-success=Build and Test (ubuntu-latest, 2.13.8, temurin@17) - - status-success=Build and Test (ubuntu-latest, 3.1.0, temurin@8) - - status-success=Build and Test (ubuntu-latest, 3.1.0, temurin@17) + - status-success=Build and Test (ubuntu-latest, 3.1.3, temurin@8) + - status-success=Build and Test (ubuntu-latest, 3.1.3, temurin@17) actions: merge: method: squash diff --git a/build.sbt b/build.sbt index 1c229760..99890497 100644 --- a/build.sbt +++ b/build.sbt @@ -2,10 +2,9 @@ import sbt.librarymanagement.ConflictWarning val scala_2_12 = "2.12.16" val scala_2_13 = "2.13.8" -val scala_30 = "3.0.2" -val scala_31 = "3.1.2" +val scala_31 = "3.1.3" val mainScalaVersion = scala_31 -val supportedScalaVersions = Seq(scala_2_12, scala_2_13, scala_30, scala_31) +val supportedScalaVersions = Seq(scala_2_12, scala_2_13, scala_31) ThisBuild / crossScalaVersions := supportedScalaVersions ThisBuild / scalaVersion := mainScalaVersion