File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -23,12 +23,14 @@ object Scala {
23
23
val max213 = patchVer(scala213)
24
24
val max30 = 2
25
25
val max31 = 3
26
- val max32 = patchVer(scala3)
26
+ val max32 = 2
27
+ val max33 = patchVer(scala3)
27
28
(8 until max212).map(i => s " 2.12. $i" ) ++ Seq (scala212) ++
28
29
(0 until max213).map(i => s " 2.13. $i" ) ++ Seq (scala213) ++
29
30
(0 to max30).map(i => s " 3.0. $i" ) ++
30
31
(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)
32
34
}
33
35
34
36
def maxAmmoniteScala212Version = scala212
@@ -54,8 +56,6 @@ object Scala {
54
56
}
55
57
56
58
// 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)
59
59
def defaultInternal = scala3
60
60
61
61
// The Scala version used by default to compile user input.
You can’t perform that action at this time.
0 commit comments