File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
scala/scala-api/src/project Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -21,10 +21,14 @@ public enum ScalaLanguageLevel implements Ordered<ScalaLanguageLevel> {
21
21
Scala_3_0 ("3.0" ),
22
22
Scala_3_1 ("3.1" ),
23
23
Scala_3_2 ("3.2" ),
24
- //not yet released scala versions
25
- //(added in order Scala SDK is properly created for new major release candidate versions of the scala compiler)
26
24
Scala_3_3 ("3.3" ),
27
25
Scala_3_4 ("3.4" ),
26
+ Scala_3_5 ("3.5" ),
27
+ // not yet released scala versions
28
+ // (added in order Scala SDK is properly created for new major release candidate versions of the scala compiler)
29
+ Scala_3_6 ("3.6" ),
30
+ Scala_3_7 ("3.7" ),
31
+ Scala_3_8 ("3.8" )
28
32
;
29
33
30
34
public boolean isScala3 () {
@@ -38,7 +42,7 @@ public Language getLanguage() {
38
42
return isScala3 () ? Scala3Language .INSTANCE : ScalaLanguage .INSTANCE ;
39
43
}
40
44
41
- public static final ScalaLanguageLevel latestPublishedVersion = Scala_3_2 ;
45
+ public static final ScalaLanguageLevel latestPublishedVersion = Scala_3_5 ;
42
46
public static final ScalaLanguageLevel [] publishedVersions ;
43
47
44
48
static {
You can’t perform that action at this time.
0 commit comments