Skip to content

Commit

Permalink
Scala 3.2.0 (#238)
Browse files Browse the repository at this point in the history
  • Loading branch information
pk044 committed Sep 6, 2022
1 parent 191073f commit 2d42436
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [2.12.16, 2.13.8, 3.1.3]
scala: [2.12.16, 2.13.8, 3.2.0]
java: [temurin@8, temurin@17]
runs-on: ${{ matrix.os }}
steps:
Expand Down
4 changes: 2 additions & 2 deletions .mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.3, temurin@8)
- status-success=Build and Test (ubuntu-latest, 3.1.3, temurin@17)
- status-success=Build and Test (ubuntu-latest, 3.2.0, temurin@8)
- status-success=Build and Test (ubuntu-latest, 3.2.0, temurin@17)
actions:
merge:
method: squash
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ import sbt.librarymanagement.ConflictWarning

val scala_2_12 = "2.12.16"
val scala_2_13 = "2.13.8"
val scala_31 = "3.1.3"
val mainScalaVersion = scala_31
val supportedScalaVersions = Seq(scala_2_12, scala_2_13, scala_31)
val scala_32 = "3.2.0"
val mainScalaVersion = scala_32
val supportedScalaVersions = Seq(scala_2_12, scala_2_13, scala_32)

ThisBuild / crossScalaVersions := supportedScalaVersions
ThisBuild / scalaVersion := mainScalaVersion
Expand Down

0 comments on commit 2d42436

Please sign in to comment.