Skip to content

Commit 009882e

Browse files
committed
feature: Add support for Scala 3.2.2
1 parent 2e1703a commit 009882e

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

project/V.scala

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@ object V {
55
val scala211 = "2.11.12"
66
val scala212 = "2.12.17"
77
val scala213 = "2.13.10"
8-
val scala3 = "3.2.1"
9-
val nextScala3RC = "3.2.2-RC2"
8+
val scala3 = "3.2.2"
109
val sbtScala = "2.12.16"
1110
val ammonite212Version = "2.12.17"
1211
val ammonite213Version = "2.13.10"
@@ -96,9 +95,9 @@ object V {
9695

9796
// Scala 3
9897
def nonDeprecatedScala3Versions =
99-
Seq(nextScala3RC, scala3, "3.2.0", "3.1.3", "3.1.2", "3.1.1")
98+
Seq(scala3, "3.2.1", "3.2.0", "3.1.3")
10099
def deprecatedScala3Versions =
101-
Seq("3.2.2-RC1", "3.1.0", "3.0.2", "3.0.1", "3.0.0")
100+
Seq("3.2.2-RC2", "3.1.2", "3.1.1", "3.1.0", "3.0.2")
102101
def scala3Versions = nonDeprecatedScala3Versions ++ deprecatedScala3Versions
103102

104103
lazy val nightlyScala3DottyVersions = {
@@ -126,6 +125,5 @@ object V {
126125
ammonite213Version,
127126
scala3,
128127
ammonite3Version,
129-
nextScala3RC,
130128
).toList
131129
}

tests/cross/src/test/scala/tests/pc/CompletionScalaCliSuite.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ class CompletionScalaCliSuite extends BaseCompletionSuite {
8989
check(
9090
"plugin".tag(
9191
IgnoreScalaVersion(version =>
92-
Set("2.12.12", "2.12.16", "3.2.1")(version) ||
92+
Set("2.12.12", "2.12.16", "3.2.2", "3.3.0")(version) ||
9393
version.contains(
9494
"NIGHTLY"
9595
) || version.contains(

0 commit comments

Comments
 (0)