Skip to content

Commit 978df8f

Browse files
author
builduser
committed
Merged branch idea241.release-vasil/language-levels into idea241.release
2 parents 9a9ffbf + 26c1495 commit 978df8f

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

scala/scala-api/src/project/ScalaLanguageLevel.java

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,14 @@ public enum ScalaLanguageLevel implements Ordered<ScalaLanguageLevel> {
2121
Scala_3_0("3.0"),
2222
Scala_3_1("3.1"),
2323
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)
2624
Scala_3_3("3.3"),
2725
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")
2832
;
2933

3034
public boolean isScala3() {
@@ -38,7 +42,7 @@ public Language getLanguage() {
3842
return isScala3() ? Scala3Language.INSTANCE : ScalaLanguage.INSTANCE;
3943
}
4044

41-
public static final ScalaLanguageLevel latestPublishedVersion = Scala_3_2;
45+
public static final ScalaLanguageLevel latestPublishedVersion = Scala_3_5;
4246
public static final ScalaLanguageLevel[] publishedVersions;
4347

4448
static {

0 commit comments

Comments
 (0)