Skip to content

Commit

Permalink
Add Scala 3.2.[0-2] support (#1042)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexarchambault authored Apr 7, 2023
1 parent e173fca commit 3a871c2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
matrix:
OS: [ubuntu-latest]
JDK: [8]
SCALA: [2.12.16, 2.12.17, 2.13.9, 2.13.10, 3.1.2, 3.1.3]
SCALA: [2.12.16, 2.12.17, 2.13.9, 2.13.10, 3.2.1, 3.2.2]
include:
- OS: windows-latest
JDK: 8
Expand Down
4 changes: 3 additions & 1 deletion project/deps.sc
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ object Deps {
}

object ScalaVersions {
def scala3Latest = "3.1.3"
def scala3Latest = "3.2.2"
def scala3Compat = "3.1.3"
def cross2_3Version(sv: String) =
if (sv.startsWith("3.0.") || sv.startsWith("3.1.")) "2.13.7"
Expand All @@ -79,6 +79,8 @@ object ScalaVersions {
val binaries = Seq(scala3Compat, scala213, scala212)
val all = Seq(
scala3Latest,
"3.2.1",
"3.2.0",
scala3Compat,
"3.1.2",
"3.1.1",
Expand Down

0 comments on commit 3a871c2

Please sign in to comment.