Skip to content

Commit 69841f0

Browse files
committed
Fix Scala 3.3.0 being skipped over by mill
1 parent 031e768 commit 69841f0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

project/deps.sc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,14 @@ object Scala {
2323
val max213 = patchVer(scala213)
2424
val max30 = 2
2525
val max31 = 3
26-
val max32 = patchVer(scala3)
26+
val max32 = 2
27+
val max33 = patchVer(scala3)
2728
(8 until max212).map(i => s"2.12.$i") ++ Seq(scala212) ++
2829
(0 until max213).map(i => s"2.13.$i") ++ Seq(scala213) ++
2930
(0 to max30).map(i => s"3.0.$i") ++
3031
(0 to max31).map(i => s"3.1.$i") ++
31-
(0 until max32).map(i => s"3.2.$i") ++ Seq(scala3)
32+
(0 to max32).map(i => s"3.2.$i") ++
33+
(0 until max33).map(i => s"3.3.$i") ++ Seq(scala3)
3234
}
3335

3436
def maxAmmoniteScala212Version = scala212
@@ -54,8 +56,6 @@ object Scala {
5456
}
5557

5658
// The Scala version used to build the CLI itself.
57-
// We should be able to switch to 3.x when it'll have CPS support
58-
// (for the either { value(…) } stuff)
5959
def defaultInternal = scala3
6060

6161
// The Scala version used by default to compile user input.

0 commit comments

Comments
 (0)